3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-05 16:40:52 +00:00

Fix misleading generation number in trace (#9687)

Current implementation prints 0 when the cached generation is used
This commit is contained in:
Can Cebeci 2026-06-01 16:00:59 -07:00 committed by GitHub
parent d025b34606
commit 8ddd435835
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1058,7 +1058,7 @@ namespace smt {
SCTRACE(causality, m_coming_from_quant, tout << "EN: #" << e->get_owner_id() << "\n";);
if (m.has_trace_stream())
m.trace_stream() << "[attach-enode] #" << n->get_id() << " " << m_generation << "\n";
m.trace_stream() << "[attach-enode] #" << n->get_id() << " " << generation << "\n";
return e;
}