3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
This commit is contained in:
Jakob Rath 2023-10-23 15:27:12 +02:00
parent 25d1bca583
commit a797220484

View file

@ -69,6 +69,8 @@ namespace polysat {
continue;
if (!c1.is_pos_eq())
continue;
if (!c1.is_currently_true(s)) // may happen if value of 'v' was propagated by slicing, thus falsifying c1 (which then is the conflict constraint)
continue;
SASSERT(c1.is_currently_true(s));
SASSERT(c2.is_currently_false(s));
SASSERT_EQ(c1.bvalue(s), l_true);