3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 10:55:50 +00:00

adding #qvars to [mk-quant] log line

This commit is contained in:
nilsbecker 2019-04-20 17:41:03 +02:00
parent 1c24d340d1
commit bd974799fc
2 changed files with 3 additions and 3 deletions

View file

@ -2443,7 +2443,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_id() << " " << q->get_qid() << " " << q->get_num_decls();
for (unsigned i = 0; i < q->get_num_patterns(); ++i) {
strm << " #" << q->get_pattern(i)->get_id();
}