mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
lemma
This commit is contained in:
parent
8edcb9e268
commit
cf80225fee
1 changed files with 5 additions and 3 deletions
|
@ -219,11 +219,13 @@ namespace polysat {
|
|||
clause_builder lemma(s());
|
||||
|
||||
for (auto c : m_constraints) {
|
||||
if (!c->has_bvar())
|
||||
keep(c);
|
||||
lemma.push(~c);
|
||||
SASSERT(!c->has_bvar());
|
||||
keep(c);
|
||||
}
|
||||
|
||||
for (auto c : *this)
|
||||
lemma.push(~c);
|
||||
|
||||
for (unsigned v : m_vars) {
|
||||
if (!is_pmarked(v))
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue