fpa_get_sbits method

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

\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,
  );
}