mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 00:05:46 +00:00
solver factories, cleanup solver API, simplified strategic solver, added combined solver
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
bfe6678ad2
commit
8198e62cbd
22 changed files with 720 additions and 492 deletions
9
src/solver/combined_solver_params.pyg
Normal file
9
src/solver/combined_solver_params.pyg
Normal file
|
@ -0,0 +1,9 @@
|
|||
def_module_params('combined_solver',
|
||||
description='combines two solvers: non-incremental (solver1) and incremental (solver2)',
|
||||
export=True,
|
||||
params=(('solver2_timeout', UINT, UINT_MAX, "fallback to solver 1 after timeout even when in incremental model"),
|
||||
('ignore_solver1', BOOL, False, "if true, solver 2 is always used"),
|
||||
('solver2_unknown', UINT, 1, "what should be done when solver 2 returns unknown: 0 - just return unknown, 1 - execute solver 1 if quantifier free problem, 2 - execute solver 1")
|
||||
))
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue