Skip to content

Commit

Permalink
Clarify the dolmen option
Browse files Browse the repository at this point in the history
  • Loading branch information
Halbaroth committed Jul 28, 2023
1 parent 5d1bc68 commit 43fca3e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docs/sphinx_docs/Usage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Model generation is disabled by default. There are two recommended ways to enabl
on demand using the statement `(get-model)`.

Alternatively, you can enable model generation using the statement
`(set-option :produce-models true)` and the options `--sat-solver tableaux`
and `--frontend dolmen`.
`(set-option :produce-models true)`. This currently requires using the options
`--sat-solver tableaux` and `--frontend dolmen`.

#### Examples

Expand Down Expand Up @@ -121,7 +121,7 @@ Model generation is disabled by default. There are two recommended ways to enabl
(get-model)
```
and the command `alt-ergo --frontend model --sat-solver tableaux INPUT.smt2` produces
and the command `alt-ergo --frontend dolmen --sat-solver tableaux INPUT.smt2` produces
the output model
```
unknown
Expand All @@ -131,9 +131,10 @@ Model generation is disabled by default. There are two recommended ways to enabl
(define-fun c () Int 0)
)
```
*Note*: you need to select the SAT solver Tableaux as the model generation is not
supported yet by the other SAT solvers. The options `--dump-models` and `--produce-models`
select the right SAT solver for you.
*Note*: you need to select the Dolmen frontend and the SAT solver Tableaux as the
model generation is not supported yet by the other SAT solvers. The options
`--dump-models` and `--produce-models` select the right frontend and SAT solver
for you.

### Output
The results of an Alt-ergo's execution have the following form :
Expand Down

0 comments on commit 43fca3e

Please sign in to comment.