3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00
This commit is contained in:
Jakob Rath 2021-09-13 14:46:35 +02:00
parent 8edcb9e268
commit cf80225fee

View file

@ -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;