3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-30 04:15:51 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-09-03 15:25:50 -07:00
parent a566c7307d
commit 5633af76cc
5 changed files with 20 additions and 12 deletions

View file

@ -277,7 +277,7 @@ namespace arith {
if (is_app(n)) {
internalize_args(to_app(n));
for (expr* arg : *to_app(n))
if (a.is_arith_expr(arg))
if (a.is_arith_expr(arg) && !m.is_bool(arg))
internalize_term(arg);
}
theory_var v = mk_evar(n);