fpa_get_ebits method
@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,
);
}