get_domain_size method

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

\brief Return the number of parameters of the given declaration.

\sa Z3_get_arity

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

Implementation

int get_domain_size(
  Z3_context c,
  Z3_func_decl d,
) {
  return _get_domain_size(
    c,
    d,
  );
}