3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-20 23:56:37 +00:00

Update z3_api.h

This commit is contained in:
Nuno Lopes 2024-12-16 12:13:45 +00:00 committed by GitHub
parent c250209a3f
commit 4308dfbcdc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4992,6 +4992,16 @@ extern "C" {
*/
bool Z3_API Z3_is_app(Z3_context c, Z3_ast a);
/**
def_API('Z3_is_ground', BOOL, (_in(CONTEXT), _in(AST)))
*/
bool Z3_API Z3_is_ground(Z3_context c, Z3_ast a);
/**
def_API('Z3_get_depth', UINT, (_in(CONTEXT), _in(AST)))
*/
unsigned Z3_API Z3_get_depth(Z3_context c, Z3_ast a);
/**
def_API('Z3_is_numeral_ast', BOOL, (_in(CONTEXT), _in(AST)))
*/