get_quantifier_bound_sort method
\brief Return sort of the i'th bound variable.
\pre Z3_get_ast_kind(a) == Z3_QUANTIFIER_AST
def_API('Z3_get_quantifier_bound_sort', SORT, (_in(CONTEXT), _in(AST), _in(UINT)))
Implementation
Z3_sort get_quantifier_bound_sort(
Z3_context c,
Z3_ast a,
int i,
) {
return _get_quantifier_bound_sort(
c,
a,
i,
);
}