get_sort_id method

int get_sort_id(
  1. Z3_context c,
  2. Z3_sort s
)

\brief Return a unique identifier for \c s.

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

Implementation

int get_sort_id(
  Z3_context c,
  Z3_sort s,
) {
  return _get_sort_id(
    c,
    s,
  );
}