3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-06 00:50:54 +00:00

try fixed int patch period

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2026-02-06 14:38:46 -10:00 committed by Nikolaj Bjorner
parent b0b33367ef
commit edc2715aa8
3 changed files with 4 additions and 8 deletions

View file

@ -9,6 +9,6 @@ def_module_params(module_name='lp',
('dio_ignore_big_nums', BOOL, True, 'Ignore the terms with big numbers in the Diophantine handler, only relevant when dioph_eq is true'),
('dio_calls_period', UINT, 1, 'Period of calling the Diophantine handler in the final_check()'),
('dio_run_gcd', BOOL, False, 'Run the GCD heuristic if dio is on, if dio is disabled the option is not used'),
('int_patch_period', UINT, 0, 'Period for patching integer columns (0 = no throttling, 1 = throttle adaptively)'),
('int_patch_period', UINT, 1, 'Skip int_patch_period - 1 calls and then call the patching'),
))