mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
9 lines
485 B
Text
9 lines
485 B
Text
|
|
def_module_params('solver',
|
|
description='solver parameters',
|
|
export=True,
|
|
params=(('smtlib2_log', SYMBOL, '', "file to save solver interaction"),
|
|
('cancel_backup_file', SYMBOL, '', "file to save partial search state if search is canceled"),
|
|
('timeout', UINT, UINT_MAX, "timeout on the solver object; overwrites a global timeout"),
|
|
))
|
|
|