func_interp_get_arity method

int func_interp_get_arity(
  1. Z3_context c,
  2. Z3_func_interp f
)

\brief Return the arity (number of arguments) of the given function interpretation.

def_API('Z3_func_interp_get_arity', UINT, (_in(CONTEXT), _in(FUNC_INTERP)))

Implementation

int func_interp_get_arity(
  Z3_context c,
  Z3_func_interp f,
) {
  return _func_interp_get_arity(
    c,
    f,
  );
}