Skip to content

Commit 0ebea1c

Browse files
remove debug out
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent 253f7d7 commit 0ebea1c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/api/python/z3/z3.py

+2
Original file line numberDiff line numberDiff line change
@@ -1073,6 +1073,8 @@ def decl(self):
10731073
_z3_assert(is_app(self), "Z3 application expected")
10741074
return FuncDeclRef(Z3_get_app_decl(self.ctx_ref(), self.as_ast()), self.ctx)
10751075

1076+
1077+
10761078
def num_args(self):
10771079
"""Return the number of arguments of a Z3 application.
10781080

src/cmd_context/pdecl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,6 @@ bool pdatatypes_decl::commit(pdecl_manager& m) {
773773
for (unsigned i = 0; i < d->get_num_params(); ++i) {
774774
ps.push_back(m.m().mk_uninterpreted_sort(symbol(i), 0, nullptr));
775775
}
776-
verbose_stream() << ps.size() << " " << ps << "\n";
777776

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

0 commit comments

Comments
 (0)