We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 253f7d7 commit 0ebea1cCopy full SHA for 0ebea1c
src/api/python/z3/z3.py
@@ -1073,6 +1073,8 @@ def decl(self):
1073
_z3_assert(is_app(self), "Z3 application expected")
1074
return FuncDeclRef(Z3_get_app_decl(self.ctx_ref(), self.as_ast()), self.ctx)
1075
1076
+
1077
1078
def num_args(self):
1079
"""Return the number of arguments of a Z3 application.
1080
src/cmd_context/pdecl.cpp
@@ -773,7 +773,6 @@ bool pdatatypes_decl::commit(pdecl_manager& m) {
773
for (unsigned i = 0; i < d->get_num_params(); ++i) {
774
ps.push_back(m.m().mk_uninterpreted_sort(symbol(i), 0, nullptr));
775
}
776
- verbose_stream() << ps.size() << " " << ps << "\n";
777
778
dts.m_buffer.push_back(d->instantiate_decl(m, ps.size(), ps.data()));
779
0 commit comments