3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-23 00:37:36 +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 768755b6f5
commit 4ef799ada4
5 changed files with 20 additions and 3 deletions

View file

@ -108,6 +108,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);
}