mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
fixup model construction on undef results for arithmetic. Fixes issue #161
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
e13bf2424e
commit
96c8b1e7ff
4 changed files with 9 additions and 4 deletions
|
@ -125,7 +125,7 @@ protected:
|
|||
m_solver.assert_expr(fml1);
|
||||
lbool is_sat = m_solver.check();
|
||||
TRACE("ctx_solver_simplify_tactic", tout << "is non-equivalence sat?: " << is_sat << "\n";);
|
||||
if (is_sat != l_false) {
|
||||
if (is_sat == l_true) {
|
||||
TRACE("ctx_solver_simplify_tactic",
|
||||
tout << "result is not equivalent to input\n";
|
||||
tout << mk_pp(fml1, m) << "\n";);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue