3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-30 16:03:16 +00:00

update pretty printer to show lambdas

This commit is contained in:
Nikolaj Bjorner 2025-07-12 17:51:37 -07:00
parent 47a2376172
commit 383f4db14c

View file

@ -903,12 +903,7 @@ namespace euf {
out << "n";
out << "#" << n->get_expr_id() << " := ";
expr* f = n->get_expr();
if (is_app(f))
out << mk_bounded_pp(f, m, 1) << " ";
else if (is_quantifier(f))
out << "q:" << f->get_id() << " ";
else
out << "v:" << f->get_id() << " ";
out << mk_bounded_pp(f, m, 1) << " ";
if (!n->is_root())
out << "[r " << n->get_root()->get_expr_id() << "] ";
if (!n->m_parents.empty()) {