mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-05 19:00:33 -05:00
Fixed some typos in doc
This commit is contained in:
parent
8896ce2b79
commit
3cefd85b21
5 changed files with 10 additions and 13 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
# Enssure we are on master branch
|
||||
# Ensure we are on master branch
|
||||
git checkout master
|
||||
|
||||
# Generate documentation
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ version=`cat VERSION`
|
|||
git checkout master
|
||||
|
||||
# Generate documentation
|
||||
(cd src && make doc)
|
||||
make doc
|
||||
(cd doc && asciidoc index.txt)
|
||||
|
||||
# Checkout gh-pages
|
||||
|
|
@ -19,7 +19,7 @@ mkdir -p ./$version
|
|||
|
||||
# Copy doc to the right locations
|
||||
cp doc/index.html ./
|
||||
cp src/dolmen.docdir/* ./$version/
|
||||
cp msat.docdir/* ./$version/
|
||||
|
||||
# Add potentially new pages
|
||||
git add ./$version/*
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ Theory_intf
|
|||
|
||||
The following modules allow the creation of a McSat solver (Model Constructing solver):
|
||||
|
||||
{!ṃodules:
|
||||
{!modules:
|
||||
Mcsolver
|
||||
Expr_intf
|
||||
Plugin_intf
|
||||
|
|
@ -32,7 +32,7 @@ Plugin_intf
|
|||
|
||||
Lastly, mSAT also provides an implementation of Tseitin's CNF conversion:
|
||||
|
||||
{!modules
|
||||
{!modules:
|
||||
Tseitin
|
||||
Tseitin_intf
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,22 +26,18 @@ backend/Dot
|
|||
backend/Dedukti
|
||||
backend/Backend_intf
|
||||
|
||||
# Auxiliary
|
||||
util/Hashcons
|
||||
|
||||
|
||||
# SAT solver frontend
|
||||
sat/Expr_sat
|
||||
sat/Sat
|
||||
sat/Expr_sat
|
||||
sat/Type_sat
|
||||
|
||||
# SMT solver frontend
|
||||
smt/Expr_smt
|
||||
smt/Smt
|
||||
smt/Expr_smt
|
||||
smt/Type_smt
|
||||
smt/Unionfind
|
||||
|
||||
# MCsat
|
||||
mcsat/Eclosure
|
||||
# MCsat solver frontend
|
||||
mcsat/Mcsat
|
||||
mcsat/Eclosure
|
||||
mcsat/Plugin_mcsat
|
||||
|
|
|
|||
|
|
@ -8,3 +8,4 @@ module type S = Tseitin_intf.S
|
|||
|
||||
module Make : functor
|
||||
(F : Tseitin_intf.Arg) -> S with type atom = F.t
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue