3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-22 00:20:27 +00:00

add stats for throttling

This commit is contained in:
Lev Nachmanson 2025-06-26 13:55:04 -07:00 committed by Lev Nachmanson
parent 899677e626
commit 2b6c73af82
4 changed files with 8 additions and 2 deletions

View file

@ -76,6 +76,7 @@ bool nla_throttle::insert_new(throttle_kind k, lpvar monic_var, lpvar x_var, lpv
bool nla_throttle::insert_new_impl(const signature& sig) {
if (m_seen.contains(sig)) {
TRACE(nla_solver, tout << "throttled lemma generation\n";);
m_stats.m_nla_throttled_lemmas++;
return true; // Already seen, throttle
}