mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +00:00
move solver-params to params
This commit is contained in:
parent
77a313ff76
commit
78eaefe5a8
7 changed files with 5 additions and 6 deletions
11
src/params/solver_params.pyg
Normal file
11
src/params/solver_params.pyg
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
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"),
|
||||
('lemmas2console', BOOL, False, 'print lemmas during search'),
|
||||
('axioms2files', BOOL, False, 'print negated theory axioms to separate files during search'),
|
||||
))
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue