mk_seq_sort method

Z3_sort mk_seq_sort(
  1. Z3_context c,
  2. Z3_sort s
)

\brief Create a sequence sort out of the sort for the elements.

def_API('Z3_mk_seq_sort', SORT, (_in(CONTEXT), _in(SORT)))

Implementation

Z3_sort mk_seq_sort(
  Z3_context c,
  Z3_sort s,
) {
  return _mk_seq_sort(
    c,
    s,
  );
}