mk_fpa_sort_half method

Z3_sort mk_fpa_sort_half(
  1. Z3_context c
)

\brief Create the half-precision (16-bit) FloatingPoint sort.

\param c logical context

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

Implementation

Z3_sort mk_fpa_sort_half(
  Z3_context c,
) {
  return _mk_fpa_sort_half(
    c,
  );
}