fpa_get_numeral_significand_string method

Z3_string fpa_get_numeral_significand_string(
  1. Z3_context c,
  2. Z3_ast t
)

\brief Return the significand value of a floating-point numeral as a string.

\param c logical context \param t a floating-point numeral \returns true if \c t corresponds to a floating point numeral, otherwise invokes exception handler or returns false

Remarks: The significand \c s is always \ccode{0.0 <= s < 2.0}; the resulting string is long enough to represent the real significand precisely.

def_API('Z3_fpa_get_numeral_significand_string', STRING, (_in(CONTEXT), _in(AST)))

Implementation

Z3_string fpa_get_numeral_significand_string(
  Z3_context c,
  Z3_ast t,
) {
  return _fpa_get_numeral_significand_string(
    c,
    t,
  );
}