3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00

updated logging

This commit is contained in:
Nikolaj Bjorner 2020-10-06 18:02:20 -07:00
parent 546e152837
commit ae7d76767b
2 changed files with 6 additions and 10 deletions

View file

@ -313,10 +313,10 @@ namespace smt {
m_num_instances++;
}
CTRACE("quantifier_", f != nullptr,
tout << expr_ref(q, m()) << " ";
CTRACE("bindings", f != nullptr,
tout << expr_ref(q, m()) << "\n";
for (unsigned i = 0; i < num_bindings; ++i) {
tout << expr_ref(bindings[i]->get_owner(), m()) << " ";
tout << expr_ref(bindings[i]->get_owner(), m()) << " [r " << bindings[i]->get_root()->get_owner_id() << "] ";
}
tout << "\n";
);