3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 09:15:47 +00:00

add missing fixed propagations on negated integer inequalities

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-11 02:07:16 -07:00
parent ae5a713e81
commit 21a31fcd26
9 changed files with 92 additions and 94 deletions

View file

@ -974,9 +974,6 @@ namespace {
}
void assign_lit_eh(literal l) override {
// if (m_current_generation > stop_gen)
// m_current_generation--;
expr * e = m_context.bool_var2expr(l.var());
if (e == m_current_goal)
return;
@ -1096,7 +1093,6 @@ namespace {
void set_goal(expr * e)
{
if (e == m_current_goal) return;
GOAL_START();