3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

redo fixed bits, add simplifications to intblast solver

This commit is contained in:
Nikolaj Bjorner 2024-01-06 16:12:01 -08:00
parent c4b7061590
commit 30c0771d24
11 changed files with 127 additions and 121 deletions

View file

@ -74,6 +74,9 @@ namespace polysat {
struct stats {
void reset() { memset(this, 0, sizeof(stats)); }
unsigned m_num_conflicts;
unsigned m_num_propagations;
unsigned m_num_axioms;
stats() { reset(); }
};