3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 04:26:00 +00:00

fallback stats

This commit is contained in:
Jakob Rath 2022-08-04 08:51:24 +02:00
parent b9588af07a
commit 014fe4e3fd
2 changed files with 9 additions and 6 deletions

View file

@ -54,6 +54,7 @@ namespace polysat {
unsigned m_num_conflicts;
unsigned m_num_bailouts;
unsigned m_num_restarts;
unsigned m_num_viable_fallback; ///< how often did we query the univariate solver
void reset() { memset(this, 0, sizeof(*this)); }
stats() { reset(); }
};