mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 10:05: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
|
@ -17,7 +17,5 @@ z3_add_component(solver
|
|||
PYG_FILES
|
||||
combined_solver_params.pyg
|
||||
parallel_params.pyg
|
||||
PYG_FILES
|
||||
solver_params.pyg
|
||||
|
||||
)
|
||||
|
|
|
@ -24,7 +24,7 @@ Notes:
|
|||
#include "ast/display_dimacs.h"
|
||||
#include "tactic/model_converter.h"
|
||||
#include "solver/solver.h"
|
||||
#include "solver/solver_params.hpp"
|
||||
#include "params/solver_params.hpp"
|
||||
#include "model/model_evaluator.h"
|
||||
#include "model/model_params.hpp"
|
||||
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
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