3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +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:13 -08:00
parent 6330bf7d25
commit a65efb682b
2 changed files with 5 additions and 2 deletions

View file

@ -375,7 +375,10 @@ namespace recfun {
SASSERT(n_vars == d->get_arity());
is_imm_pred is_i(*u);
d->compute_cases(*u, r, is_i, n_vars, vars, rhs);
#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
}
namespace decl {