mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 04:31:24 +00:00
add sat option for doing a global simplification before the bounded search and the main CDCL search loop. The option is also used for the sat-preprocess tacitc (#4514)
Co-authored-by: rainoftime <rainoftime@gmail.com>
This commit is contained in:
parent
41430cd128
commit
55cd1e996c
5 changed files with 14 additions and 0 deletions
|
@ -27,6 +27,7 @@ def_module_params('sat',
|
|||
('random_freq', DOUBLE, 0.01, 'frequency of random case splits'),
|
||||
('random_seed', UINT, 0, 'random seed'),
|
||||
('burst_search', UINT, 100, 'number of conflicts before first global simplification'),
|
||||
('enable_pre_simplify', BOOL, False, 'enable pre simplifications before the bounded search'),
|
||||
('max_conflicts', UINT, UINT_MAX, 'maximum number of conflicts'),
|
||||
('gc', SYMBOL, 'glue_psm', 'garbage collection strategy: psm, glue, glue_psm, dyn_psm'),
|
||||
('gc.initial', UINT, 20000, 'learned clauses garbage collection frequency'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue