3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

limit the number of tactics in qfnia

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-11-21 11:20:14 -08:00 committed by Lev Nachmanson
parent ca0ce579b1
commit e4cbe980e9
2 changed files with 46 additions and 10 deletions

View file

@ -119,10 +119,10 @@ tactic * mk_qfnia_tactic(ast_manager & m, params_ref const & p) {
return and_then(
mk_report_verbose_tactic("(qfnia-tactic)", 10),
mk_qfnia_preamble(m, p),
or_else(mk_qfnia_sat_solver(m, p),
try_for(mk_qfnia_smt_solver(m, p), 2000),
mk_qfnia_nlsat_solver(m, p),
mk_qfnia_smt_solver(m, p))
);
)
;
}