mk_fpa_sort method

Z3_sort mk_fpa_sort(
  1. Z3_context c,
  2. int ebits,
  3. int sbits
)

\brief Create a FloatingPoint sort.

\param c logical context \param ebits number of exponent bits \param sbits number of significand bits

\remark \c ebits must be larger than 1 and \c sbits must be larger than 2.

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

Implementation

Z3_sort mk_fpa_sort(
  Z3_context c,
  int ebits,
  int sbits,
) {
  return _mk_fpa_sort(
    c,
    ebits,
    sbits,
  );
}