3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-16 05:41: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

@ -106,6 +106,7 @@ struct th_rewriter_cfg : public default_rewriter_cfg {
m_ar_rw.updt_params(p);
m_f_rw.updt_params(p);
m_seq_rw.updt_params(p);
m_rec_rw.updt_params(p);
updt_local_params(p);
}