3
0
Fork 0
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:
Nikolaj Bjorner 2016-04-04 12:59:18 +02:00
parent 9667185af0
commit ec5a4ba63d
2 changed files with 6 additions and 1 deletions

View file

@ -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) {