3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-06 23:35:46 +00:00

fix cjust update when backtracking over boolean decision

This commit is contained in:
Jakob Rath 2021-09-07 17:03:47 +02:00
parent a6643955e6
commit e74cf72cef
4 changed files with 9 additions and 29 deletions

View file

@ -55,13 +55,4 @@ namespace polysat {
m_literals.push_back(c.blit());
}
// void clause_builder::push_new_constraint(signed_constraint c) {
// SASSERT(c);
// if (c.is_always_false())
// return;
// m_level = std::max(m_level, c->level());
// m_literals.push_back(c.blit());
// m_new_constraints.push_back(c.get());
// }
}