mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +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) {
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue