3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-13 20:33:02 +00:00
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-11-16 13:52:28 -10:00
parent 8e4557647f
commit c6eb9d7eb7
2 changed files with 20 additions and 4 deletions

View file

@ -1484,7 +1484,7 @@ namespace nlsat {
m_pm.display(tout << " equation used: ", eq_ref, m_solver.display_proc());
tout << " = 0\n";
});
new_lit = l; // SIMP_BUG
new_lit = l;
}
else {
literal assumption = new_lit;
@ -1498,7 +1498,7 @@ namespace nlsat {
tout << " = 0\n";
});
add_literal(assumption);
new_lit = true_literal; // SIMP_BUG
new_lit = true_literal;
}
}
else {
@ -1517,7 +1517,6 @@ namespace nlsat {
m_pm.display(tout << " equation used: ", eq_ref, m_solver.display_proc());
tout << " = 0\n";
});
// SIMP_BUG
}
}
}