fpa_get_numeral_significand_uint64 method
\brief Return the significand value of a floating-point numeral as a uint64.
\param c logical context \param t a floating-point numeral \param n pointer to output uint64
Remarks: This function extracts the significand bits in t
, without the
hidden bit or normalization. Sets the \c Z3_INVALID_ARG error code if the
significand does not fit into a \c uint64. NaN is an invalid argument.
def_API('Z3_fpa_get_numeral_significand_uint64', BOOL, (_in(CONTEXT), _in(AST), _out(UINT64)))
Implementation
bool fpa_get_numeral_significand_uint64(
Z3_context c,
Z3_ast t,
ffi.Pointer<ffi.Uint64> n,
) {
return _fpa_get_numeral_significand_uint64(
c,
t,
n,
);
}