Skip to content

Commit

Permalink
add max conflict throttle to SAT based QFNIA tactic #7329
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Aug 3, 2024
1 parent 52f8eb2 commit 26b8d63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tactic/smtlogics/qfnia_tactic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ 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),
mk_propagate_values_tactic(m),
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;
}
Expand Down

0 comments on commit 26b8d63

Please sign in to comment.