mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
add bit-matrix, avoid flattening and/or after bit-blasting, split pdd_grobner into solver/simplifier, add xlin, add smtfd option for incremental mode logic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
09dbacdf50
commit
1d0572354b
17 changed files with 991 additions and 386 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