3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00

regression from July 4 2020 tweeted by Dr. RJ and crowd profiled - let's submit this somwhere?

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-05-09 20:33:39 -07:00
parent 7373946d67
commit 31a5bd7fd7
2 changed files with 2 additions and 1 deletions

View file

@ -51,7 +51,7 @@ public:
void reset(); void reset();
void cleanup(); void cleanup();
obj_map<expr, expr*> const sub() const { return m_subst; } obj_map<expr, expr*> const & sub() const { return m_subst; }
std::ostream& display(std::ostream& out); std::ostream& display(std::ostream& out);
}; };

View file

@ -147,6 +147,7 @@ namespace sat {
if (m_solver.value(r) == l_true) if (m_solver.value(r) == l_true)
lits.push_back(r); lits.push_back(r);
out << "roots: " << lits << "\n"; out << "roots: " << lits << "\n";
m_solver.display(out);
return out; return out;
} }