mirror of
https://github.com/Z3Prover/z3
synced 2025-07-31 16:33:18 +00:00
SMTFD is back (#4676)
This commit is contained in:
parent
f370d8d9b4
commit
687a16a796
5 changed files with 2175 additions and 0 deletions
|
@ -34,6 +34,7 @@ Notes:
|
|||
#include "tactic/smtlogics/nra_tactic.h"
|
||||
#include "tactic/portfolio/default_tactic.h"
|
||||
#include "tactic/fd_solver/fd_solver.h"
|
||||
#include "tactic/fd_solver/smtfd_solver.h"
|
||||
#include "tactic/ufbv/ufbv_tactic.h"
|
||||
#include "tactic/fpa/qffp_tactic.h"
|
||||
#include "muz/fp/horn_tactic.h"
|
||||
|
@ -107,6 +108,8 @@ static solver* mk_special_solver_for_logic(ast_manager & m, params_ref const & p
|
|||
parallel_params pp(p);
|
||||
if ((logic == "QF_FD" || logic == "SAT") && !m.proofs_enabled() && !pp.enable())
|
||||
return mk_fd_solver(m, p);
|
||||
if (logic == "SMTFD" && !m.proofs_enabled() && !pp.enable())
|
||||
return mk_smtfd_solver(m, p);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue