3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

update saturation

This commit is contained in:
Jakob Rath 2021-09-13 13:48:48 +02:00
parent 412b6ffd4a
commit 1a810cc696
3 changed files with 44 additions and 44 deletions

View file

@ -200,6 +200,7 @@ namespace polysat {
for (auto premise : premises) {
keep(premise);
SASSERT(premise->has_bvar());
SASSERT(s().m_bvars.value(premise.blit()) == l_true); // otherwise the propagation doesn't make sense
c_lemma.push(~premise.blit());
active_level = std::max(active_level, s().m_bvars.level(premise.blit()));
}