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:
parent
47a2376172
commit
383f4db14c
1 changed files with 1 additions and 6 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue