3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

avoid const in ml

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-27 10:38:57 -08:00
parent a65efb682b
commit 88eb527b96

View file

@ -375,10 +375,7 @@ namespace recfun {
SASSERT(n_vars == d->get_arity());
is_imm_pred is_i(*u);
#if 0
expr_ref reduced_rhs = preprocess_ites(*u, r, n_vars, vars, rhs);
d->compute_cases(*u, r, is_i, n_vars, vars, reduced_rhs);
#endif
d->compute_cases(*u, r, is_i, n_vars, vars, rhs);
}
namespace decl {