3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-05 09:37:44 +00:00

enable rotation

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-01-03 11:49:39 -08:00
parent 5a57636cd8
commit 7e4681d836
2 changed files with 15 additions and 11 deletions

View file

@ -49,11 +49,12 @@ namespace sls {
};
struct stats {
unsigned m_num_lookaheads = 0;
unsigned m_lookaheads = 0;
unsigned m_moves = 0;
unsigned m_restarts = 0;
unsigned m_num_propagations = 0;
unsigned random_flip_count = 0;
unsigned m_propagations = 0;
unsigned m_random_flips = 0;
unsigned m_rotations = 0;
};
struct bool_info {