mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
parallel params
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f7e49501af
commit
a3e651156a
10
src/tactic/smtlogics/parallel_params.pyg
Normal file
10
src/tactic/smtlogics/parallel_params.pyg
Normal file
|
@ -0,0 +1,10 @@
|
|||
def_module_params('parallel',
|
||||
description='parameters for parallel solver',
|
||||
class_name='parallel_params',
|
||||
export=True,
|
||||
params=(
|
||||
('enable', BOOL, False, 'enable parallel solver by default on selected tactics (for QF_BV)'),
|
||||
('conquer_batch_size', UINT, 1000, 'number of cubes to batch together for fast conquer'),
|
||||
('inprocess.max', UINT, 2, 'maximal number of inprocessing steps during simplification'),
|
||||
('restart.max', UINT, 100, 'maximal number of restarts during conquer phase'),
|
||||
))
|
Loading…
Reference in a new issue