3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

temporary fix

This commit is contained in:
Jakob Rath 2023-02-06 11:34:28 +01:00
parent 8774952aeb
commit d7797a53df

View file

@ -267,6 +267,8 @@ namespace polysat {
void conflict::insert(signed_constraint c) {
if (contains(c))
return;
if (c.is_always_true()) // TODO: caller should avoid this?
return;
LOG("Inserting " << lit_pp(s, c));
SASSERT_EQ(c.bvalue(s), l_true);
SASSERT(!c.is_always_true()); // such constraints would be removed earlier