3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-13 14:40:55 +00:00

Preserve fingerprint in trace (#7534)

This commit is contained in:
Jonáš Fiala 2025-01-27 22:09:48 +01:00 committed by GitHub
parent 2d8f024680
commit 2050fc3b35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -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;