mirror of
https://github.com/Z3Prover/z3
synced 2025-06-21 05:13:39 +00:00
add hack for testing conflict resolution (but commented out)
This commit is contained in:
parent
a8e68ebf86
commit
c4e098b5d4
1 changed files with 3 additions and 1 deletions
|
@ -79,9 +79,11 @@ namespace polysat {
|
||||||
LOG("Conflict: " << c);
|
LOG("Conflict: " << c);
|
||||||
SASSERT(empty());
|
SASSERT(empty());
|
||||||
insert(c);
|
insert(c);
|
||||||
for (auto v : c->vars())
|
for (auto v : c->vars()) {
|
||||||
if (s().is_assigned(v))
|
if (s().is_assigned(v))
|
||||||
m_vars.insert(v);
|
m_vars.insert(v);
|
||||||
|
// inc_pref(v); // hack to be able to test the rest of the conflict resolution loop, TODO: proper fix
|
||||||
|
}
|
||||||
SASSERT(!empty());
|
SASSERT(!empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue