3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

fix bug in ctx-solver-simplify reported @ http://z3.codeplex.com/workitem/51

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-06-27 11:59:40 -05:00
parent 13262a0fc5
commit 619bd91ddb

View file

@ -218,7 +218,7 @@ protected:
else if (m.is_bool(arg)) {
res = local_simplify(a, n, id, i);
TRACE("ctx_solver_simplify_tactic",
tout << "Already cached: " << path_r.first << " " << mk_pp(res, m) << "\n";);
tout << "Already cached: " << path_r.first << " " << mk_pp(arg, m) << " |-> " << mk_pp(res, m) << "\n";);
args.push_back(res);
}
else {
@ -327,7 +327,7 @@ protected:
tmp = m.mk_eq(result, n);
m_solver.assert_expr(tmp);
if (!simplify_bool(n2, result)) {
result = a;
result = a->get_arg(index);
}
m_solver.pop(1);
return result;