3
0
Fork 0
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:
Nikolaj Bjorner 2022-08-08 11:34:41 +03:00
parent 77a313ff76
commit 78eaefe5a8
7 changed files with 5 additions and 6 deletions

View file

@ -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
)

View 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'),
))