get_quantifier_num_bound method
\brief Return number of bound variables of quantifier.
\pre Z3_get_ast_kind(a) == Z3_QUANTIFIER_AST
def_API('Z3_get_quantifier_num_bound', UINT, (_in(CONTEXT), _in(AST)))
Implementation
int get_quantifier_num_bound(
Z3_context c,
Z3_ast a,
) {
return _get_quantifier_num_bound(
c,
a,
);
}