mirror of
https://github.com/Z3Prover/z3
synced 2025-05-06 23:35:46 +00:00
Store only literals in the conflict state
This commit is contained in:
parent
fde78f99c3
commit
63031548cb
10 changed files with 73 additions and 145 deletions
|
@ -77,8 +77,6 @@ namespace polysat {
|
|||
void clause_builder::push_new(signed_constraint c) {
|
||||
if (c.is_always_false()) // filter out trivial constraints such as "4 < 2" (may come in from forbidden intervals)
|
||||
return;
|
||||
if (!c->has_bvar())
|
||||
m_solver->m_constraints.ensure_bvar(c.get());
|
||||
push(c);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue