fpa_get_numeral_exponent_int64 method

bool fpa_get_numeral_exponent_int64(
  1. Z3_context c,
  2. Z3_ast t,
  3. Pointer<Int64> n,
  4. bool biased,
)

\brief Return the exponent value of a floating-point numeral as a signed 64-bit integer

\param c logical context \param t a floating-point numeral \param n exponent \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_int64', BOOL, (_in(CONTEXT), _in(AST), _out(INT64), _in(BOOL)))

Implementation

bool fpa_get_numeral_exponent_int64(
  Z3_context c,
  Z3_ast t,
  ffi.Pointer<ffi.Int64> n,
  bool biased,
) {
  return _fpa_get_numeral_exponent_int64(
    c,
    t,
    n,
    biased,
  );
}