mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
107 lines
3.3 KiB
C++
107 lines
3.3 KiB
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
quant_tactics.cpp
|
|
|
|
Abstract:
|
|
|
|
Tactics for benchmarks containing quantifiers.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2012-02-21.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#include"tactical.h"
|
|
#include"simplify_tactic.h"
|
|
#include"propagate_values_tactic.h"
|
|
#include"solve_eqs_tactic.h"
|
|
#include"elim_uncnstr_tactic.h"
|
|
#include"qe_tactic.h"
|
|
#include"ctx_simplify_tactic.h"
|
|
#include"smt_tactic.h"
|
|
|
|
static tactic * mk_quant_preprocessor(ast_manager & m, bool disable_gaussian = false) {
|
|
params_ref pull_ite_p;
|
|
pull_ite_p.set_bool(":pull-cheap-ite", true);
|
|
pull_ite_p.set_bool(":local-ctx", true);
|
|
pull_ite_p.set_uint(":local-ctx-limit", 10000000);
|
|
|
|
params_ref ctx_simp_p;
|
|
ctx_simp_p.set_uint(":max-depth", 30);
|
|
ctx_simp_p.set_uint(":max-steps", 5000000);
|
|
|
|
tactic * solve_eqs;
|
|
if (disable_gaussian)
|
|
solve_eqs = mk_skip_tactic();
|
|
else
|
|
solve_eqs = when(mk_not(mk_has_pattern_probe()), mk_solve_eqs_tactic(m));
|
|
|
|
// remark: investigate if gaussian elimination is useful when patterns are not provided.
|
|
return and_then(mk_simplify_tactic(m),
|
|
mk_propagate_values_tactic(m),
|
|
using_params(mk_ctx_simplify_tactic(m), ctx_simp_p),
|
|
using_params(mk_simplify_tactic(m), pull_ite_p),
|
|
solve_eqs,
|
|
mk_elim_uncnstr_tactic(m),
|
|
mk_simplify_tactic(m));
|
|
}
|
|
|
|
static tactic * mk_no_solve_eq_preprocessor(ast_manager & m) {
|
|
return mk_quant_preprocessor(m, true);
|
|
}
|
|
|
|
tactic * mk_ufnia_tactic(ast_manager & m, params_ref const & p) {
|
|
tactic * st = and_then(mk_no_solve_eq_preprocessor(m),
|
|
mk_smt_tactic());
|
|
st->updt_params(p);
|
|
return st;
|
|
}
|
|
|
|
tactic * mk_uflra_tactic(ast_manager & m, params_ref const & p) {
|
|
tactic * st = and_then(mk_quant_preprocessor(m),
|
|
mk_smt_tactic());
|
|
st->updt_params(p);
|
|
return st;
|
|
}
|
|
|
|
tactic * mk_auflia_tactic(ast_manager & m, params_ref const & p) {
|
|
params_ref qi_p;
|
|
qi_p.set_str(":qi-cost", "0");
|
|
TRACE("qi_cost", qi_p.display(tout); tout << "\n" << qi_p.get_str(":qi-cost", "<null>") << "\n";);
|
|
tactic * st = and_then(mk_no_solve_eq_preprocessor(m),
|
|
or_else(and_then(fail_if(mk_gt(mk_num_exprs_probe(), mk_const_probe(static_cast<double>(128)))),
|
|
using_params(mk_smt_tactic(), qi_p),
|
|
mk_fail_if_undecided_tactic()),
|
|
mk_smt_tactic()));
|
|
st->updt_params(p);
|
|
return st;
|
|
}
|
|
|
|
tactic * mk_auflira_tactic(ast_manager & m, params_ref const & p) {
|
|
tactic * st = and_then(mk_quant_preprocessor(m),
|
|
mk_smt_tactic());
|
|
st->updt_params(p);
|
|
return st;
|
|
}
|
|
|
|
tactic * mk_aufnira_tactic(ast_manager & m, params_ref const & p) {
|
|
tactic * st = and_then(mk_quant_preprocessor(m),
|
|
mk_smt_tactic());
|
|
st->updt_params(p);
|
|
return st;
|
|
}
|
|
|
|
tactic * mk_lra_tactic(ast_manager & m, params_ref const & p) {
|
|
tactic * st = and_then(mk_quant_preprocessor(m),
|
|
mk_qe_tactic(m),
|
|
mk_smt_tactic());
|
|
st->updt_params(p);
|
|
return st;
|
|
}
|
|
|