3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-05 23:05:46 +00:00

some fixes

This commit is contained in:
Jakob Rath 2021-09-13 15:09:50 +02:00
parent cf80225fee
commit e5289f84a0
5 changed files with 13 additions and 8 deletions

View file

@ -19,9 +19,9 @@ namespace polysat {
std::ostream& search_item::display(std::ostream& out) const {
switch (kind()) {
case search_item_k::assignment:
return out << "assignment(v" << var() << ")";
return out << "v" << var() << "=?";
case search_item_k::boolean:
return out << "boolean(" << lit() << ")";
return out << lit();
}
UNREACHABLE();
return out;