get_quantifier_bound_name method

Z3_symbol get_quantifier_bound_name(
  1. Z3_context c,
  2. Z3_ast a,
  3. int i
)

\brief Return symbol of the i'th bound variable.

\pre Z3_get_ast_kind(a) == Z3_QUANTIFIER_AST

def_API('Z3_get_quantifier_bound_name', SYMBOL, (_in(CONTEXT), _in(AST), _in(UINT)))

Implementation

Z3_symbol get_quantifier_bound_name(
  Z3_context c,
  Z3_ast a,
  int i,
) {
  return _get_quantifier_bound_name(
    c,
    a,
    i,
  );
}