3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

Fix n-arry applications in spacer_term_graph

This commit is contained in:
Arie Gurfinkel 2017-12-19 15:03:52 -05:00
parent 7b82ec1bee
commit 05e876d684

View file

@ -292,7 +292,7 @@ app* term_graph::mk_app_core (app *a) {
kids.push_back (mk_app(::to_app(a->get_arg(i))));
}
app* res = m.mk_app(a->get_decl(), kids.c_ptr());
app* res = m.mk_app(a->get_decl(), a->get_num_args(), kids.c_ptr());
m_pinned.push_back(res);
return res;