mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Preserve fingerprint in trace (#7534)
This commit is contained in:
parent
2d8f024680
commit
2050fc3b35
|
@ -188,7 +188,7 @@ namespace smt {
|
|||
|
||||
void qi_queue::display_instance_profile(fingerprint * f, quantifier * q, unsigned num_bindings, enode * const * bindings, unsigned proof_id, unsigned generation) {
|
||||
if (m.has_trace_stream()) {
|
||||
m.trace_stream() << "[instance] 0x0";
|
||||
m.trace_stream() << "[instance] " << f->get_data_hash();
|
||||
if (m.proofs_enabled())
|
||||
m.trace_stream() << " #" << proof_id;
|
||||
m.trace_stream() << " ; " << generation;
|
||||
|
|
|
@ -240,7 +240,7 @@ namespace smt {
|
|||
vector<std::tuple<enode *, enode *>> & used_enodes) {
|
||||
|
||||
if (pat == nullptr) {
|
||||
trace_stream() << "[inst-discovered] MBQI 0x0 #" << q->get_id();
|
||||
trace_stream() << "[inst-discovered] MBQI " << f->get_data_hash() << " #" << q->get_id();
|
||||
for (unsigned i = 0; i < num_bindings; ++i) {
|
||||
trace_stream() << " #" << bindings[num_bindings - i - 1]->get_owner_id();
|
||||
}
|
||||
|
@ -266,7 +266,7 @@ namespace smt {
|
|||
}
|
||||
|
||||
// At this point all relevant equalities for the match are logged.
|
||||
out << "[new-match] " << static_cast<void*>(f) << " #" << q->get_id() << " #" << pat->get_id();
|
||||
out << "[new-match] " << f->get_data_hash() << " #" << q->get_id() << " #" << pat->get_id();
|
||||
for (unsigned i = 0; i < num_bindings; i++) {
|
||||
// I don't want to use mk_pp because it creates expressions for pretty printing.
|
||||
// This nasty side-effect may change the behavior of Z3.
|
||||
|
|
Loading…
Reference in a new issue