3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 04:28:17 +00:00

UFBV performance fix

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2012-10-30 17:09:09 +00:00
parent cb8a6db51b
commit 4abce8e0c3

View file

@ -66,11 +66,8 @@ tactic * mk_ufbv_tactic(ast_manager & m, params_ref const & p) {
main_p.set_bool(":elim-and", true);
main_p.set_bool(":solver", true);
params_ref smt_p(p);
smt_p.set_bool(":auto-config", false);
tactic * t = and_then(repeat(mk_ufbv_preprocessor_tactic(m, main_p), 2),
using_params(mk_smt_tactic(smt_p), main_p));
mk_smt_tactic_using(false, main_p));
t->updt_params(p);