mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
make eval cache sensitive to model completion. Bug 110 reported by cipher1024
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4d2d334999
commit
3d1ca5ecc9
3 changed files with 18 additions and 9 deletions
|
@ -133,7 +133,8 @@ bool model::eval(expr * e, expr_ref & result, bool model_completion) {
|
|||
ev(e, result);
|
||||
return true;
|
||||
}
|
||||
catch (model_evaluator_exception &) {
|
||||
catch (model_evaluator_exception & ex) {
|
||||
TRACE("model_evaluator", tout << ex.msg() << "\n";);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue