3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-07-21 12:20:36 -07:00
parent cf5a8fd248
commit efa74fe6c6

View file

@ -1812,9 +1812,9 @@ namespace sat {
CTRACE("resolve_bug", !c1.contains(l) || !c2.contains(~l), tout << c1 << "\n" << c2 << "\nl: " << l << "\n";); CTRACE("resolve_bug", !c1.contains(l) || !c2.contains(~l), tout << c1 << "\n" << c2 << "\nl: " << l << "\n";);
if (m_visited.size() <= 2*s.num_vars()) if (m_visited.size() <= 2*s.num_vars())
m_visited.resize(2*s.num_vars(), false); m_visited.resize(2*s.num_vars(), false);
if (c1.was_removed()) if (c1.was_removed() && !c1.contains(l))
return false; return false;
if (c2.was_removed()) if (c2.was_removed() && !c2.contains(~l))
return false; return false;
SASSERT(c1.contains(l)); SASSERT(c1.contains(l));
SASSERT(c2.contains(~l)); SASSERT(c2.contains(~l));