fpa_get_sbits method
\brief Retrieves the number of bits reserved for the significand in a FloatingPoint sort.
\param c logical context \param s FloatingPoint sort
def_API('Z3_fpa_get_sbits', UINT, (_in(CONTEXT),_in(SORT)))
Implementation
int fpa_get_sbits(
Z3_context c,
Z3_sort s,
) {
return _fpa_get_sbits(
c,
s,
);
}