3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00

clear regressions

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-09-29 15:56:01 -07:00
parent e1224e116f
commit fd8b2ba596
4 changed files with 26 additions and 8 deletions

View file

@ -280,8 +280,8 @@ namespace polysat {
}
if (conflict_var() == v) {
forbidden_intervals fi;
if (fi.perform(s, v, cjust_v, *this))
forbidden_intervals fi(s);
if (fi.perform(v, cjust_v, *this))
return true;
}
@ -303,7 +303,7 @@ namespace polysat {
break;
}
set_bailout();
if (s.is_assigned(v))
if (s.is_assigned(v) && s.m_justification[v].is_decision())
m_vars.insert(v);
return false;
}