3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 14:25:46 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-11-26 18:27:44 +01:00
parent fc6e127cca
commit 7b85afbe9c
4 changed files with 20 additions and 5 deletions

View file

@ -341,7 +341,7 @@ namespace polysat {
return out;
entry* first = e;
do {
out << "v" << v << ": " << e->interval << " " << e->side_cond << " " << e->src << "\n";
out << e->interval << " " << e->side_cond << " " << e->src << " ";
e = e->next();
}
while (e != first);
@ -350,7 +350,7 @@ namespace polysat {
std::ostream& viable::display(std::ostream& out) const {
for (pvar v = 0; v < m_viable.size(); ++v)
display(out, v);
display(out << "v" << v << ": ", v);
return out;
}