mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
update
This commit is contained in:
parent
4cca164bb4
commit
455abb1db3
1 changed files with 2 additions and 5 deletions
|
@ -1323,12 +1323,9 @@ namespace {
|
||||||
}
|
}
|
||||||
while (e != first);
|
while (e != first);
|
||||||
|
|
||||||
// Doesn't hold anymore: we may get new constraints with unassigned variables, see test_polysat::test_bench23_fi_lemma.
|
// TODO: violated in bench27
|
||||||
// SASSERT(all_of(lemma, [this](sat::literal lit) { return s.m_bvars.value(lit) == l_false || s.lit2cnstr(lit).is_currently_false(s); }));
|
SASSERT(all_of(lemma, [this](sat::literal lit) { return s.m_bvars.value(lit) != l_true; }));
|
||||||
|
|
||||||
// NSB review: bench23 exposes a scenario where s.m_bvars.value(lit) == l_true. So the viable lemma is mute, but the literal in the premise
|
|
||||||
// is a conflict.
|
|
||||||
// SASSERT(all_of(lemma, [this](sat::literal lit) { return s.m_bvars.value(lit) != l_true; }));
|
|
||||||
core.add_lemma("viable", lemma.build());
|
core.add_lemma("viable", lemma.build());
|
||||||
core.logger().log(inf_fi(*this, v));
|
core.logger().log(inf_fi(*this, v));
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue