get_quantifier_weight method

int get_quantifier_weight(
  1. Z3_context c,
  2. Z3_ast a
)

\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,
  );
}