pub unsafe extern "C" fn Z3_fpa_get_numeral_exponent_int64(
    c: Z3_context,
    t: Z3_ast,
    n: *mut i64,
    biased: bool
) -> bool
Expand description

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

  • c: logical context
  • t: a floating-point numeral
  • n: exponent
  • biased: flag to indicate whether the result is in biased representation

Remarks: This function extracts the exponent in t, without normalization. NaN is an invalid argument.