is_quantifier_exists method

bool is_quantifier_exists(
  1. Z3_context c,
  2. Z3_ast a
)

\brief Determine if ast is an existential quantifier.

def_API('Z3_is_quantifier_exists', BOOL, (_in(CONTEXT), _in(AST)))

Implementation

bool is_quantifier_exists(
  Z3_context c,
  Z3_ast a,
) {
  return _is_quantifier_exists(
    c,
    a,
  );
}