3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
This commit is contained in:
Nikolaj Bjorner 2020-04-27 12:06:33 -07:00
parent 4938ea7be6
commit 8996e8129e

View file

@ -27,6 +27,8 @@ br_status recfun_rewriter::mk_app_core(func_decl * f, unsigned num_args, expr *
return BR_FAILED;
}
recfun::def const& d = m_rec.get_def(f);
if (!d.get_rhs())
return BR_FAILED;
var_subst sub(m);
result = sub(d.get_rhs(), num_args, args);
return BR_REWRITE_FULL;