mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
add shortcut to retrieve kind of application
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0ebea1c298
commit
78d1139ba0
|
@ -1073,7 +1073,12 @@ class ExprRef(AstRef):
|
|||
_z3_assert(is_app(self), "Z3 application expected")
|
||||
return FuncDeclRef(Z3_get_app_decl(self.ctx_ref(), self.as_ast()), self.ctx)
|
||||
|
||||
|
||||
def kind(self):
|
||||
"""Return the Z3 internal kind of a function application."""
|
||||
if z3_debug():
|
||||
_z3_assert(is_app(self), "Z3 application expected")
|
||||
return Z3_get_decl_kind(self.ctx_ref(), Z3_get_app_decl(self.ctx_ref(), self.ast))
|
||||
|
||||
|
||||
def num_args(self):
|
||||
"""Return the number of arguments of a Z3 application.
|
||||
|
|
Loading…
Reference in a new issue