mirror of
https://github.com/Z3Prover/z3
synced 2025-06-26 07:43:41 +00:00
temporary fix
This commit is contained in:
parent
8774952aeb
commit
d7797a53df
1 changed files with 2 additions and 0 deletions
|
@ -267,6 +267,8 @@ namespace polysat {
|
||||||
void conflict::insert(signed_constraint c) {
|
void conflict::insert(signed_constraint c) {
|
||||||
if (contains(c))
|
if (contains(c))
|
||||||
return;
|
return;
|
||||||
|
if (c.is_always_true()) // TODO: caller should avoid this?
|
||||||
|
return;
|
||||||
LOG("Inserting " << lit_pp(s, c));
|
LOG("Inserting " << lit_pp(s, c));
|
||||||
SASSERT_EQ(c.bvalue(s), l_true);
|
SASSERT_EQ(c.bvalue(s), l_true);
|
||||||
SASSERT(!c.is_always_true()); // such constraints would be removed earlier
|
SASSERT(!c.is_always_true()); // such constraints would be removed earlier
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue