Module Float64_common
type t
= float
t
is currently implemented by OCaml'sfloat
type.Beware: NaNs have a sign and a payload, while they should be indistinguishable from Coq's perspective.
val is_nan : t -> bool
Test functions for special values to avoid calling
classify
val is_infinity : t -> bool
val is_neg_infinity : t -> bool
val of_string : string -> t
val to_hex_string : t -> string
Print a float exactly as an hexadecimal value (exact decimal * printing would be possible but sometimes requires more than 700 * digits).
val to_string : t -> string
Print a float as a decimal value. The printing is not exact (the * real value printed is not always the given floating-point value), * however printing is precise enough that forall float
f
, *of_string (to_decimal_string f) = f
.
val compile : t -> string
val of_float : float -> t
val sign : t -> bool
Return
true
for "-",false
for "+".
val eq : t -> t -> bool
val lt : t -> t -> bool
val le : t -> t -> bool
val compare : t -> t -> float_comparison
The IEEE 754 float comparison. * NotComparable is returned if there is a NaN in the arguments
val classify : t -> float_class
val of_int63 : Uint63.t -> t
Link with integers
val frshiftexp : t -> t * Uint63.t
val ldshiftexp : t -> Uint63.t -> t
val next_up : t -> t
val next_down : t -> t
val equal : t -> t -> bool
Return true if two floats are equal. * All NaN values are considered equal.