get_quantifier_weight method
\brief Obtain weight of quantifier.
\pre Z3_get_ast_kind(a) == Z3_QUANTIFIER_AST
def_API('Z3_get_quantifier_weight', UINT, (_in(CONTEXT), _in(AST)))
Implementation
int get_quantifier_weight(
Z3_context c,
Z3_ast a,
) {
return _get_quantifier_weight(
c,
a,
);
}