3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-20 17:14:43 +00:00
default behavior is conservative: if the body of a recursive function contains uninterpreted variables they are not rewritten.
Model evaluation will bind values to uninterpreted variables so the filter should not apply here.
This commit is contained in:
Nikolaj Bjorner 2026-01-07 10:56:50 -08:00
parent fbf65c5d76
commit ccc2a34444
5 changed files with 20 additions and 3 deletions

View file

@ -96,6 +96,9 @@ struct evaluator_cfg : public default_rewriter_cfg {
m_bv_rw.set_mkbv2num(true);
m_ar_rw.set_expand_select_store(true);
m_ar_rw.set_expand_select_ite(true);
params_ref rp;
rp.set_bool("unfold_recursive_functions", true);
m_rec_rw.updt_params(rp);
updt_params(p);
//add_unspecified_function_models(md);
}