mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
Merge branch 'bvsls' of https://git01.codeplex.com/z3 into unstable
Conflicts: src/tactic/portfolio/default_tactic.cpp Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
commit
61ba7f5e09
19 changed files with 1637 additions and 595 deletions
|
@ -37,11 +37,14 @@ Notes:
|
|||
#include"horn_tactic.h"
|
||||
#include"smt_solver.h"
|
||||
|
||||
#include"sls_tactic.h"
|
||||
|
||||
tactic * mk_tactic_for_logic(ast_manager & m, params_ref const & p, symbol const & logic) {
|
||||
if (logic=="QF_UF")
|
||||
return mk_qfuf_tactic(m, p);
|
||||
else if (logic=="QF_BV")
|
||||
return mk_qfbv_tactic(m, p);
|
||||
// return mk_qfbv_tactic(m, p);
|
||||
return mk_qfbv_sls_tactic(m, p);
|
||||
else if (logic=="QF_IDL")
|
||||
return mk_qfidl_tactic(m, p);
|
||||
else if (logic=="QF_LIA")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue