3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

Add m_num_pelis counter to stats in sls_context

This commit is contained in:
Nikolaj Bjorner 2024-08-29 15:29:42 -07:00
parent 323003aed9
commit 6312ab2184

View file

@ -97,6 +97,7 @@ namespace sls {
struct stats {
unsigned m_num_repair_down = 0;
unsigned m_num_repair_up = 0;
unsigned m_num_pelis = 0;
void reset() { memset(this, 0, sizeof(*this)); }
};