doc: check something in the readme

This commit is contained in:
Simon Cruanes 2019-02-02 19:28:12 -06:00 committed by Guillaume Bury
parent c376f1d763
commit 1632c1a619

View file

@ -78,6 +78,8 @@ We can try and check the satisfiability of some clauses — here, the clause `a
will check the satisfiability of the current set of clauses, here "Sat".
```ocaml
# a <> b;;
- : bool = true
# Sat.assume solver [[a; b]] ();;
- : unit = ()
# let res = Sat.solve solver;;