mirror of
https://github.com/Z3Prover/z3
synced 2025-06-03 12:51:22 +00:00
Bring back boolean decisions (wip)
The backtracking code doesn't know about boolean decisions yet
This commit is contained in:
parent
811843cf45
commit
3d27ec41d0
7 changed files with 132 additions and 27 deletions
|
@ -50,10 +50,13 @@ namespace polysat {
|
|||
out << "\n\t" << rpad(4, l2) << ": " << rpad(16, s.lit2cnstr(l2)) << " " << bool_justification_pp(s.m_bvars, l2);
|
||||
}
|
||||
}
|
||||
else {
|
||||
SASSERT(s.m_bvars.is_value_propagation(lit));
|
||||
else if (s.m_bvars.is_value_propagation(lit)) {
|
||||
out << " evaluated";
|
||||
}
|
||||
else {
|
||||
SASSERT(s.m_bvars.is_decision(lit));
|
||||
out << " decision";
|
||||
}
|
||||
return out;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue