mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +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
|
@ -15,6 +15,7 @@ z3_add_component(params
|
|||
poly_rewriter_params.pyg
|
||||
rewriter_params.pyg
|
||||
seq_rewriter_params.pyg
|
||||
solver_params.pyg
|
||||
EXTRA_REGISTER_MODULE_HEADERS
|
||||
context_params.h
|
||||
)
|
||||
|
|
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