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

allow a plateau mode

This commit is contained in:
Nikolaj Bjorner 2025-01-14 16:38:12 -08:00
parent 076d3dbf13
commit 11909cfdff
2 changed files with 9 additions and 4 deletions

View file

@ -26,6 +26,7 @@ def_module_params('sls',
('track_unsat', BOOL, 0, 'keep a list of unsat assertions as done in SAT - currently disabled internally'),
('random_seed', UINT, 0, 'random seed'),
('arith_use_lookahead', BOOL, False, 'use lookahead solver for NIRA'),
('arith_allow_plateau', BOOL, False, 'allow plateau moves during NIRA solving'),
('bv_use_top_level_assertions', BOOL, True, 'use top-level assertions for BV lookahead solver'),
('bv_use_lookahead', BOOL, True, 'use lookahead solver for BV'),
('bv_allow_rotation', BOOL, True, 'allow model rotation when repairing literal assignment'),