mirror of
https://github.com/Z3Prover/z3
synced 2025-07-29 15:37:58 +00:00
fix the debug build
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
4c62c8a040
commit
ac27b4d6a2
3 changed files with 3 additions and 4 deletions
|
@ -28,9 +28,8 @@ Revision History:
|
||||||
namespace smt {
|
namespace smt {
|
||||||
void context::flush_statistics() {
|
void context::flush_statistics() {
|
||||||
// Only collect statistics once to avoid duplication
|
// Only collect statistics once to avoid duplication
|
||||||
if (m_statistics_collected) {
|
if (m_statistics_collected)
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
// Force aggregation of theory statistics into m_aux_stats
|
// Force aggregation of theory statistics into m_aux_stats
|
||||||
// This ensures that detailed theory statistics are available even on timeout/interruption
|
// This ensures that detailed theory statistics are available even on timeout/interruption
|
||||||
|
|
|
@ -258,7 +258,7 @@ namespace smt {
|
||||||
}
|
}
|
||||||
|
|
||||||
void kernel::flush_statistics() {
|
void kernel::flush_statistics() {
|
||||||
IF_LOG(DEBUG, log() << "smt::kernel::flush_statistics() called\n";);
|
TRACE(smt_kernel, tout << "smt::kernel::flush_statistics() called\n";);
|
||||||
m_imp->m_kernel.flush_statistics();
|
m_imp->m_kernel.flush_statistics();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue