mirror of
https://github.com/Z3Prover/z3
synced 2025-08-29 14:30:07 +00:00
add restart.max parameter to control cancellation based on restart count
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2bd29548da
commit
aaf6e67ec8
6 changed files with 14 additions and 3 deletions
|
@ -7,6 +7,7 @@ def_module_params('sat',
|
|||
('phase.caching.off', UINT, 100, 'phase caching off period (in number of conflicts)'),
|
||||
('restart', SYMBOL, 'luby', 'restart strategy: luby or geometric'),
|
||||
('restart.initial', UINT, 100, 'initial restart (number of conflicts)'),
|
||||
('restart.max', UINT, 0, 'maximal number of restarts. Ignored if set to 0'),
|
||||
('restart.factor', DOUBLE, 1.5, 'restart increment factor for geometric strategy'),
|
||||
('random_freq', DOUBLE, 0.01, 'frequency of random case splits'),
|
||||
('random_seed', UINT, 0, 'random seed'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue