3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00

if you are really reading this commit message, you must be a programmer who has no life.

This commit is contained in:
Nikolaj Bjorner 2021-11-18 10:10:50 -08:00
parent a5fdf6ba8a
commit de424713e4
6 changed files with 33 additions and 16 deletions

View file

@ -81,7 +81,7 @@ namespace polysat {
}
else {
SASSERT(c.is_currently_false(s));
SASSERT(c.bvalue(s) == l_true);
// TBD: fails with test_subst SASSERT(c.bvalue(s) == l_true);
c->set_var_dependent();
insert(c);
}
@ -111,6 +111,8 @@ namespace polysat {
* The clause is conflicting in the current search state.
*/
void conflict::set(clause const& cl) {
if (!empty())
return;
LOG("Conflict: " << cl);
SASSERT(empty());
for (auto lit : cl)