mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
add documentation comment for evaluation, Issue #536
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9667185af0
commit
ec5a4ba63d
2 changed files with 6 additions and 1 deletions
|
@ -118,7 +118,7 @@ struct evaluator_cfg : public default_rewriter_cfg {
|
|||
expr * val = m_model.get_const_interp(f);
|
||||
if (val != 0) {
|
||||
result = val;
|
||||
return BR_DONE;
|
||||
return m().is_value(val)?BR_DONE:BR_REWRITE_FULL;
|
||||
}
|
||||
|
||||
if (m_model_completion) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue