mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 02:42:02 +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());
|
clause_builder lemma(s());
|
||||||
|
|
||||||
for (auto c : m_constraints) {
|
for (auto c : m_constraints) {
|
||||||
if (!c->has_bvar())
|
SASSERT(!c->has_bvar());
|
||||||
keep(c);
|
keep(c);
|
||||||
lemma.push(~c);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (auto c : *this)
|
||||||
|
lemma.push(~c);
|
||||||
|
|
||||||
for (unsigned v : m_vars) {
|
for (unsigned v : m_vars) {
|
||||||
if (!is_pmarked(v))
|
if (!is_pmarked(v))
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue