fpa_get_ebits method

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

@name Z3-specific floating-point extensions / /**@{/ /** \brief Retrieves the number of bits reserved for the exponent in a FloatingPoint sort.

\param c logical context \param s FloatingPoint sort

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

Implementation

int fpa_get_ebits(
  Z3_context c,
  Z3_sort s,
) {
  return _fpa_get_ebits(
    c,
    s,
  );
}