3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-25 05:37:00 +00:00

dbg output

This commit is contained in:
Jakob Rath 2024-04-11 11:12:49 +02:00
parent 020a4d5d04
commit adea39b92e
2 changed files with 3 additions and 3 deletions

View file

@ -102,7 +102,7 @@ namespace polysat {
std::ostream& assignment::display(std::ostream& out) const { std::ostream& assignment::display(std::ostream& out) const {
char const* delim = ""; char const* delim = "";
for (auto const& [var, value] : m_pairs) for (auto const& [var, value] : m_pairs)
out << delim << var << " == " << value, delim = " "; out << delim << "v" << var << " == " << value, delim = " ";
return out; return out;
} }
} }