mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
add sat option for doing a global simplification before the bounded search and the main CDCL search loop. The option is also used for the sat-preprocess tacitc (#4514)
Co-authored-by: rainoftime <rainoftime@gmail.com>
This commit is contained in:
parent
41430cd128
commit
55cd1e996c
5 changed files with 14 additions and 0 deletions
|
@ -229,6 +229,7 @@ tactic * mk_sat_tactic(ast_manager & m, params_ref const & p) {
|
|||
tactic * mk_sat_preprocessor_tactic(ast_manager & m, params_ref const & p) {
|
||||
params_ref p_aux;
|
||||
p_aux.set_uint("max_conflicts", 0);
|
||||
p_aux.set_bool("enable_pre_simplify", true);
|
||||
tactic * t = clean(using_params(mk_sat_tactic(m, p), p_aux));
|
||||
t->updt_params(p);
|
||||
return t;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue