mirror of
https://github.com/Z3Prover/z3
synced 2025-06-07 06:33:23 +00:00
fixed typo
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
398f1b1de1
commit
adb6d05805
1 changed files with 3 additions and 3 deletions
|
@ -64,19 +64,19 @@ public:
|
||||||
/**
|
/**
|
||||||
\brief Enable/Disable proof production for this solver object.
|
\brief Enable/Disable proof production for this solver object.
|
||||||
|
|
||||||
It is invoked before init(m, logic).
|
It is invoked after init(m, logic).
|
||||||
*/
|
*/
|
||||||
virtual void set_produce_proofs(bool f) {}
|
virtual void set_produce_proofs(bool f) {}
|
||||||
/**
|
/**
|
||||||
\brief Enable/Disable model generation for this solver object.
|
\brief Enable/Disable model generation for this solver object.
|
||||||
|
|
||||||
It is invoked before init(m, logic).
|
It is invoked after init(m, logic).
|
||||||
*/
|
*/
|
||||||
virtual void set_produce_models(bool f) {}
|
virtual void set_produce_models(bool f) {}
|
||||||
/**
|
/**
|
||||||
\brief Enable/Disable unsat core generation for this solver object.
|
\brief Enable/Disable unsat core generation for this solver object.
|
||||||
|
|
||||||
It is invoked before init(m, logic).
|
It is invoked after init(m, logic).
|
||||||
*/
|
*/
|
||||||
virtual void set_produce_unsat_cores(bool f) {}
|
virtual void set_produce_unsat_cores(bool f) {}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue