get_quantifier_body method

Z3_ast get_quantifier_body(
  1. Z3_context c,
  2. Z3_ast a
)

\brief Return body of quantifier.

\pre Z3_get_ast_kind(a) == Z3_QUANTIFIER_AST

def_API('Z3_get_quantifier_body', AST, (_in(CONTEXT), _in(AST)))

Implementation

Z3_ast get_quantifier_body(
  Z3_context c,
  Z3_ast a,
) {
  return _get_quantifier_body(
    c,
    a,
  );
}