mirror of
https://github.com/Z3Prover/z3
synced 2026-06-05 00:20:50 +00:00
Fix misleading generation number in trace (#9687)
Current implementation prints 0 when the cached generation is used
This commit is contained in:
parent
d025b34606
commit
8ddd435835
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue