get_sort_kind method

int get_sort_kind(
  1. Z3_context c,
  2. Z3_sort t
)

\brief Return the sort kind (e.g., array, tuple, int, bool, etc).

\sa Z3_sort_kind

def_API('Z3_get_sort_kind', UINT, (_in(CONTEXT), _in(SORT)))

Implementation

int get_sort_kind(
  Z3_context c,
  Z3_sort t,
) {
  return _get_sort_kind(
    c,
    t,
  );
}