fpa_get_numeral_significand_bv method
\brief Retrieves the significand of a floating-point literal as a bit-vector expression.
\param c logical context \param t a floating-point numeral
Remarks: NaN is an invalid argument.
def_API('Z3_fpa_get_numeral_significand_bv', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast fpa_get_numeral_significand_bv(
Z3_context c,
Z3_ast t,
) {
return _fpa_get_numeral_significand_bv(
c,
t,
);
}