3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-02 18:19:06 +00:00

re-enable fixed tabu

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-01-05 11:49:12 -08:00
parent 6b17862886
commit f6e3c5ae79
4 changed files with 13 additions and 9 deletions

View file

@ -48,6 +48,7 @@ namespace sls {
double ucb_noise = 0.1;
bool use_top_level_assertions = true;
bool use_lookahead_bv = true;
bool allow_rotation = true;
};
struct stats {
@ -83,6 +84,7 @@ namespace sls {
vector<bool_info> m_bool_info;
expr_mark m_is_root;
unsigned m_touched = 1;
sat::bool_var_set m_rotated;
std::ostream& display_weights(std::ostream& out);