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

logging names of quantified variables and updating inst-possible line

This commit is contained in:
nilsbecker 2019-01-08 22:09:32 +01:00
parent 58def55796
commit 3620dfee5e
2 changed files with 6 additions and 1 deletions

View file

@ -212,7 +212,7 @@ namespace smt {
if (f) {
if (has_trace_stream()) {
if (pat == nullptr) {
trace_stream() << "[mbqi-triggered] " << static_cast<void*>(f) << " #" << q->get_id();
trace_stream() << "[inst-possible] MBQI " << static_cast<void*>(f) << " #" << q->get_id();
for (unsigned i = 0; i < num_bindings; ++i) {
trace_stream() << " #" << bindings[num_bindings - i - 1]->get_owner_id();
}