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:
parent
7b82ec1bee
commit
05e876d684
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue