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

fixes to sat.euf ematching #5573

This commit is contained in:
Nikolaj Bjorner 2021-10-16 15:52:37 -07:00
parent f78546cd7c
commit 115203e87c
6 changed files with 98 additions and 95 deletions

View file

@ -676,7 +676,7 @@ namespace smt {
std::ostream& operator<<(std::ostream& out, enode_pp const& p) {
ast_manager& m = p.ctx.get_manager();
enode* n = p.n;
return out << "[#" << n->get_owner_id() << " " << mk_bounded_pp(n->get_expr(), m) << "]";
return out << n->get_owner_id() << ": " << mk_bounded_pp(n->get_expr(), m);
}
std::ostream& operator<<(std::ostream& out, enode_eq_pp const& p) {