get_arity method

int get_arity(
  1. Z3_context c,
  2. Z3_func_decl d
)

\brief Alias for \c Z3_get_domain_size.

\sa Z3_get_domain_size

def_API('Z3_get_arity', UINT, (_in(CONTEXT), _in(FUNC_DECL)))

Implementation

int get_arity(
  Z3_context c,
  Z3_func_decl d,
) {
  return _get_arity(
    c,
    d,
  );
}