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

add max conflict throttle to SAT based QFNIA tactic #7329

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-08-03 11:34:28 -07:00
parent 52f8eb21fb
commit 26b8d634a3

View file

@ -45,6 +45,7 @@ static tactic * mk_qfnia_bv_solver(ast_manager & m, params_ref const & p_ref) {
params_ref mem_p = p;
mem_p.set_uint("max_memory", 100);
mem_p.set_uint("max_conflicts", 500);
tactic * r = using_params(and_then(mk_simplify_tactic(m),
@ -52,7 +53,7 @@ static tactic * mk_qfnia_bv_solver(ast_manager & m, params_ref const & p_ref) {
using_params(mk_simplify_tactic(m), simp2_p),
mk_max_bv_sharing_tactic(m),
using_params(mk_bit_blaster_tactic(m), mem_p),
mk_sat_tactic(m)),
mk_sat_tactic(m, mem_p)),
p);
return r;
}