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

logging sorts of quantified variables

logging proof objects seperately form regular terms
renaming inst-possible -> inst-discovered
This commit is contained in:
nilsbecker 2019-01-14 21:28:06 +01:00
parent 3620dfee5e
commit bfb554c0b8
2 changed files with 10 additions and 3 deletions

View file

@ -212,7 +212,7 @@ namespace smt {
if (f) {
if (has_trace_stream()) {
if (pat == nullptr) {
trace_stream() << "[inst-possible] MBQI " << static_cast<void*>(f) << " #" << q->get_id();
trace_stream() << "[inst-discovered] 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();
}