Skip to content

Commit

Permalink
fix #6081
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Jun 6, 2022
1 parent cc045de commit fe08c99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/ast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2412,7 +2412,7 @@ bool ast_manager::is_pattern(expr const * n, ptr_vector<expr> &args) {

static void trace_quant(std::ostream& strm, quantifier* q) {
strm << (is_lambda(q) ? "[mk-lambda]" : "[mk-quant]")
<< " #" << q->get_id() << " " << q->get_qid() << " " << q->get_num_decls();
<< " #" << q->get_id() << " " << ensure_quote(q->get_qid()) << " " << q->get_num_decls();
for (unsigned i = 0; i < q->get_num_patterns(); ++i) {
strm << " #" << q->get_pattern(i)->get_id();
}
Expand Down

0 comments on commit fe08c99

Please sign in to comment.