3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-06 06:16:02 +00:00

another 16 nond args fixed

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-10-29 06:44:08 -07:00
parent ba83ec929a
commit 17eeebe3e7
7 changed files with 116 additions and 51 deletions

View file

@ -2240,10 +2240,9 @@ app * ast_manager::mk_app(func_decl * decl, unsigned num_args, expr * const * ar
r = mk_app_core(decl, args[j-1], args[j]);
-- j;
while (j > 0) {
// TODO: non-deterministic parameter evaluation
--j;
r = mk_app_core(decl, args[j], r);
// TODO: non-deterministic parameter evaluation
expr * arg = args[j];
r = mk_app_core(decl, arg, r);
}
}
else if (decl->is_left_associative()) {