Skip to content

Commit

Permalink
remove debug out
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Oct 22, 2024
1 parent 253f7d7 commit 0ebea1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/api/python/z3/z3.py
Original file line number Diff line number Diff line change
Expand Up @@ -1073,6 +1073,8 @@ def decl(self):
_z3_assert(is_app(self), "Z3 application expected")
return FuncDeclRef(Z3_get_app_decl(self.ctx_ref(), self.as_ast()), self.ctx)



def num_args(self):
"""Return the number of arguments of a Z3 application.
Expand Down
1 change: 0 additions & 1 deletion src/cmd_context/pdecl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,6 @@ bool pdatatypes_decl::commit(pdecl_manager& m) {
for (unsigned i = 0; i < d->get_num_params(); ++i) {
ps.push_back(m.m().mk_uninterpreted_sort(symbol(i), 0, nullptr));
}
verbose_stream() << ps.size() << " " << ps << "\n";

dts.m_buffer.push_back(d->instantiate_decl(m, ps.size(), ps.data()));
}
Expand Down

0 comments on commit 0ebea1c

Please sign in to comment.