fpa_get_numeral_exponent_string method
\brief Return the exponent value of a floating-point numeral as a string.
\param c logical context \param t a floating-point numeral \param biased flag to indicate whether the result is in biased representation \returns true if \c t corresponds to a floating point numeral, otherwise invokes exception handler or returns false
Remarks: This function extracts the exponent in t
, without normalization.
NaN is an invalid argument.
def_API('Z3_fpa_get_numeral_exponent_string', STRING, (_in(CONTEXT), _in(AST), _in(BOOL)))
Implementation
Z3_string fpa_get_numeral_exponent_string(
Z3_context c,
Z3_ast t,
bool biased,
) {
return _fpa_get_numeral_exponent_string(
c,
t,
biased,
);
}