mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 13:06:05 +00:00
Polysat: minor fixes (#5364)
* update include paths * bdd fixes * update/fix some tests * work around assertion failure when constraint from clause becomes unit * Remove old code * use clause_builder * Verify model when returning SAT * log * fix
This commit is contained in:
parent
52eb473c63
commit
d7b8ea2f7f
11 changed files with 73 additions and 95 deletions
|
@ -27,6 +27,10 @@ namespace polysat {
|
|||
return out;
|
||||
}
|
||||
|
||||
std::ostream& search_state::display(std::ostream& out) const {
|
||||
return out << m_items;
|
||||
}
|
||||
|
||||
void search_state::push_assignment(pvar p, rational const& r) {
|
||||
m_items.push_back(search_item::assignment(p));
|
||||
m_assignment.push_back({p, r});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue