mirror of
https://github.com/Z3Prover/z3
synced 2025-10-19 05:42:15 +00:00
Refactor assignment and search state
This commit is contained in:
parent
022c06f75d
commit
6e72a97727
22 changed files with 326 additions and 211 deletions
|
@ -133,9 +133,9 @@ namespace polysat {
|
|||
cl[j++] = cl[i];
|
||||
else {
|
||||
DEBUG_CODE({
|
||||
auto a = s.assignment();
|
||||
a.push_back({v, k});
|
||||
SASSERT(s.lit2cnstr(lit).is_currently_false(s, a));
|
||||
auto a = s.assignment().clone();
|
||||
a.push(v, k);
|
||||
SASSERT(s.lit2cnstr(lit).is_currently_false(a));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue