mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 02:30:23 +00:00
using a consistent naming convention for naming tactic subfolders
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
67f5ed46c1
commit
0990a2e045
140 changed files with 14 additions and 12 deletions
40
src/tactic/smtlogics/qfuf_tactic.cpp
Normal file
40
src/tactic/smtlogics/qfuf_tactic.cpp
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*++
|
||||
Copyright (c) 2012 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
qfuf_tactic.cpp
|
||||
|
||||
Abstract:
|
||||
|
||||
Tactic for QF_QFUF benchmarks.
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo de Moura (leonardo) 2012-02-21
|
||||
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
#include"tactical.h"
|
||||
#include"simplify_tactic.h"
|
||||
#include"symmetry_reduce_tactic.h"
|
||||
#include"solve_eqs_tactic.h"
|
||||
#include"propagate_values_tactic.h"
|
||||
#include"smt_tactic.h"
|
||||
|
||||
tactic * mk_qfuf_tactic(ast_manager & m, params_ref const & p) {
|
||||
params_ref s2_p;
|
||||
s2_p.set_bool(":pull-cheap-ite", true);
|
||||
s2_p.set_bool(":local-ctx", true);
|
||||
s2_p.set_uint(":local-ctx-limit", 10000000);
|
||||
return and_then(mk_simplify_tactic(m, p),
|
||||
mk_propagate_values_tactic(m, p),
|
||||
mk_solve_eqs_tactic(m, p),
|
||||
using_params(mk_simplify_tactic(m, p), s2_p),
|
||||
mk_symmetry_reduce_tactic(m, p),
|
||||
mk_smt_tactic(p));
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue