Module Float_u

type t = float

Utilities for unboxed floats. This module is mostly a copy of Base's Float module, but with much functionality missing because it can't yet be implemented for unboxed floats or unboxed types generally.

val globalize : t @ local -> t
include Ppx_quickcheck_runtime.Quickcheckable.S with type t := t
val quickcheck_generator : t Base_quickcheck.Generator.t
val quickcheck_observer : t Base_quickcheck.Observer.t
val quickcheck_shrinker : t Base_quickcheck.Shrinker.t
module Boxed = Core.Float

These definitions are available. They're included from O below.

  external box : float# -> (float[@local_opt]) = "%box_float"
  external unbox : (float[@local_opt]) -> float# = "%unbox_float"

Synonyms for box and unbox.

val to_float : float -> float @@ portable
val of_float : float -> float @@ portable

max and min will return nan if either argument is nan.

The validate_* functions always fail if class is Nan or Infinite.

Inlined from Identifiable, which comprises Sexpable, Stringable, Comparable, and Pretty_printer

Inlined from Sexpable

val sexp_of_t : t -> Core.Sexp.t @@ portable
val t_of_sexp : Core.Sexp.t -> t @@ portable
val t_sexp_grammar : t Sexplib0.Sexp_grammar.t @@ portable

For bin_io

include Core.Bin_prot.Binable.S__local with type t := t
include Bin_prot.Binable.S_only_functions__local with type t := t
include sig ... end
val bin_size_t : t Bin_prot.Size.sizer
val bin_write_t : t Bin_prot.Write.writer
val bin_read_t : t Bin_prot.Read.reader
val __bin_read_t__ : t Bin_prot.Read.vtag_reader

This function only needs implementation if t exposed to be a polymorphic variant. Despite what the type reads, this does *not* produce a function after reading; instead it takes the constructor tag (int) before reading and reads the rest of the variant t afterwards.

val bin_shape_t : Bin_prot.Shape.t
val bin_writer_t : t Bin_prot.Type_class.writer
val bin_reader_t : t Bin_prot.Type_class.reader

For hash

include Ppx_hash_lib.Hashable.S_any with type t := t
val hash_fold_t : t Ppx_hash_lib.hash_fold

From Typerep

val typerep_of_t : t Core.Typerep.t @@ portable
val typename_of_t : t Typerep_lib.Typename.t @@ portable

Inlined from Comparable

val equal : t -> t -> bool
val compare : t -> t -> int

compare t1 t2 returns 0 if t1 is equal to t2, a negative integer if t1 is less than t2, and a positive integer if t1 is greater than t2.

val min : t -> t -> t @@ portable
val max : t -> t -> t @@ portable
val ascending : t -> t -> int @@ portable

ascending is identical to compare. descending x y = ascending y x. These are intended to be mnemonic when used like List.sort ~compare:ascending and List.sort ~cmp:descending, since they cause the list to be sorted in ascending or descending order, respectively.

val descending : t -> t -> int @@ portable
val between : t -> low:t -> high:t -> bool @@ portable

between t ~low ~high means low <= t <= high

val clamp_exn : t -> min:t -> max:t -> t @@ portable

clamp_exn t ~min ~max returns t', the closest value to t such that between t' ~low:min ~high:max is true.

Raises if not (min <= max).

Inlined from Pretty_printer

val pp : Core.Formatter.t -> t -> unit @@ portable

Inlined from Invariant

val invariant : float -> unit @@ portable

Constants

Unfortunately, these must be functions (for now), because module-level float64 constants are not yet supported.

val nan : unit -> t @@ portable
val infinity : unit -> t @@ portable
val neg_infinity : unit -> t @@ portable
val max_value : unit -> t @@ portable

Equal to infinity.

val min_value : unit -> t @@ portable

Equal to neg_infinity.

val zero : unit -> t @@ portable
val one : unit -> t @@ portable
val minus_one : unit -> t @@ portable
val pi : unit -> t @@ portable

The constant pi.

val sqrt_pi : unit -> t @@ portable

The constant sqrt(pi).

val sqrt_2pi : unit -> t @@ portable

The constant sqrt(2 * pi).

val euler_gamma_constant : unit -> t @@ portable

Euler-Mascheroni constant (γ).

val epsilon_float : unit -> t @@ portable

The difference between 1.0 and the smallest exactly representable floating-point number greater than 1.0. That is:

epsilon_float = (one_ulp `Up 1.0) -. 1.0

This gives the relative accuracy of type t, in the sense that for numbers on the order of x, the roundoff error is on the order of x *. float_epsilon.

See also: Machine epsilon.

val max_finite_value : unit -> t @@ portable
val min_positive_subnormal_value : unit -> t @@ portable
val min_positive_normal_value : unit -> t @@ portable

Rounding and integer conversion

val to_int64_preserve_order : t -> int64 option @@ portable

An order-preserving bijection between all floats except for nans, and all int64s with absolute value smaller than or equal to 2**63 - 2**52. Note both 0. and -0. map to 0L.

val to_int64_preserve_order_exn : t -> int64 @@ portable
val of_int64_preserve_order : int64 -> t @@ portable

Returns nan if the absolute value of the argument is too large.

val one_ulp : [ `Up | `Down ] -> t -> t @@ portable

The next or previous representable float. ULP stands for "unit of least precision", and is the spacing between floating point numbers. Both one_ulp `Up infinity and one_ulp `Down neg_infinity return a nan.

val to_int : t -> int @@ portable
val to_int_unchecked : t -> int @@ portable
val truncate : t -> int @@ portable
val of_int63 : Core.Int63.t -> t @@ portable
val of_int64 : int64 -> t @@ portable
val to_int64 : t -> int64 @@ portable
val to_float32_u : t -> float32 @@ portable
val of_float32_u : float32 -> t @@ portable
val round : ?dir:[ `Zero | `Nearest | `Up | `Down ] @ local -> (t -> t) @ local @@ portable

round rounds a float to an integer float. iround{,_exn} rounds a float to an int. Both round according to a direction dir, with default dir being `Nearest.

  | `Down    | rounds toward Float.neg_infinity                             |
  | `Up      | rounds toward Float.infinity                                 |
  | `Nearest | rounds to the nearest int ("round half-integers up")         |
  | `Zero    | rounds toward zero                                           |

iround_exn raises when trying to handle nan or trying to handle a float outside the range [float min_int, float max_int).

Here are some examples for round for each direction:

  | `Down    | [-2.,-1.)   to -2. | [-1.,0.)   to -1. | [0.,1.) to 0., [1.,2.) to 1. |
  | `Up      | (-2.,-1.]   to -1. | (-1.,0.]   to -0. | (0.,1.] to 1., (1.,2.] to 2. |
  | `Zero    | (-2.,-1.]   to -1. | (-1.,1.)   to 0.  | [1.,2.) to 1.                |
  | `Nearest | [-1.5,-0.5) to -1. | [-0.5,0.5) to 0.  | [0.5,1.5) to 1.              |

For convenience, versions of these functions with the dir argument hard-coded are provided. If you are writing performance-critical code you should use the versions with the hard-coded arguments (e.g. iround_down_exn). The _exn ones are the fastest.

The following properties hold:

  • of_int (iround_*_exn i) = i for any float i that is an integer with min_int <= i <= max_int.
  • round_* i = i for any float i that is an integer.
  • iround_*_exn (of_int i) = i for any int i with -2**52 <= i <= 2**52.
val iround : ?dir:[ `Zero | `Nearest | `Up | `Down ] @ local -> (t -> int option) @ local @@ portable
val iround_exn : ?dir:[ `Zero | `Nearest | `Up | `Down ] @ local -> (t -> int) @ local @@ portable
val round_towards_zero : t -> t @@ portable
val round_down : t -> t @@ portable
val round_up : t -> t @@ portable
val round_nearest : t -> t @@ portable

Rounds half integers up.

val round_nearest_half_to_even : t -> t @@ portable

Rounds half integers to the even integer.

val iround_towards_zero : t -> int option @@ portable
val iround_down : t -> int option @@ portable
val iround_up : t -> int option @@ portable
val iround_nearest : t -> int option @@ portable
val iround_towards_zero_exn : t -> int @@ portable
val iround_down_exn : t -> int @@ portable
val iround_up_exn : t -> int @@ portable
val iround_nearest_exn : t -> int @@ portable
val int63_round_down_exn : t -> Core.Int63.t @@ portable
val int63_round_up_exn : t -> Core.Int63.t @@ portable
val int63_round_nearest_exn : t -> Core.Int63.t @@ portable
val iround_lbound : unit -> t @@ portable
val iround_ubound : unit -> t @@ portable
val int63_round_lbound : unit -> t @@ portable
val int63_round_ubound : unit -> t @@ portable
val round_significant : t -> significant_digits:int -> t @@ portable

round_significant x ~significant_digits:n rounds to the nearest number with n significant digits. More precisely: it returns the representable float closest to x rounded to n significant digits. It is meant to be equivalent to sprintf "%.*g" n x |> Float.of_string but faster (10x-15x). Exact ties are resolved as round-to-even.

However, it might in rare cases break the contract above.

It might in some cases appear as if it violates the round-to-even rule:

  let x = 4.36083208835
  let z = 4.3608320883;;

  assert (z = fast_approx_round_significant x ~sf:11)

But in this case so does sprintf, since x as a float is slightly under-represented:

  sprintf "%.11g" x = "4.3608320883";;
  sprintf "%.30g" x = "4.36083208834999958014577714493"

More importantly, round_significant might sometimes give a different result than sprintf ... |> Float.of_string because it round-trips through an integer. For example, the decimal fraction 0.009375 is slightly under-represented as a float:

  sprintf "%.17g" 0.009375 = "0.0093749999999999997"

But:

  0.009375 *. 1e5 = 937.5

Therefore:

  round_significant 0.009375 ~significant_digits:3 = 0.00938

whereas:

  sprintf "%.3g" 0.009375 = "0.00937"

In general we believe (and have tested on numerous examples) that the following holds for all x:

  let s = sprintf "%.*g" significant_digits x |> Float.of_string in
  s = round_significant ~significant_digits x
  || s = round_significant ~significant_digits (one_ulp `Up x)
  || s = round_significant ~significant_digits (one_ulp `Down x)

Also, for float representations of decimal fractions (like 0.009375), round_significant is more likely to give the "desired" result than sprintf ... |> of_string (that is, the result of rounding the decimal fraction, rather than its float representation). But it's not guaranteed either--see the 4.36083208835 example above.

val round_decimal : t -> decimal_digits:int -> t @@ portable

round_decimal x ~decimal_digits:n rounds x to the nearest 10**(-n). For positive n it is meant to be equivalent to sprintf "%.*f" n x |> Float.of_string, but faster.

All the considerations mentioned in round_significant apply (both functions use the same code path).

Tests

val is_nan : t -> bool @@ portable
val is_inf : t -> bool @@ portable

A float is infinite when it is either infinity or neg_infinity.

val is_finite : t -> bool @@ portable

A float is finite when neither is_nan nor is_inf is true.

val is_integer : t -> bool @@ portable

is_integer x is true if and only if x is an integer.

Arithmetic

min_inan and max_inan return, respectively, the min and max of the two given values, except when one of the values is a nan, in which case the other is returned. (Returns nan if both arguments are nan.)

val min_inan : t -> t -> t @@ portable
val max_inan : t -> t -> t @@ portable
val mod_float : t -> t -> t @@ portable

mod_float x y returns a result with the same sign as x. It returns nan if y is 0. It is basically

  let mod_float x y = x -. (float (truncate (x /. y)) *. y)

not

  let mod_float x y = x -. (floor (x /. y) *. y)

and therefore resembles mod on integers more than %.

val add : t -> t -> t @@ portable

Ordinary functions for arithmetic operations

These are for modules that inherit from t, since the infix operators are more convenient.

val sub : t -> t -> t @@ portable
val scale : t -> t -> t @@ portable
module O : sig ... end

A sub-module designed to be opened to make working with floats more convenient.

val unbox : float -> float
val box : float -> float
val (+) : t -> t -> t
val (-) : t -> t -> t
val (*) : t -> t -> t
val (/) : t -> t -> t
val (%) : t -> t -> t

In analogy to Int.( % ), ( % ):

  • always produces non-negative (or NaN) result
  • raises when given a negative modulus.

Like the other infix operators, NaNs in mean NaNs out.

Other cases: (a % Infinity) = a when 0 <= a < Infinity, (a % Infinity) = Infinity when -Infinity < a < 0, (+/- Infinity % a) = NaN, (a % 0) = NaN.

val (**) : t -> t -> t
val (~-) : t -> t
val (>=) : t -> t -> bool
val (<=) : t -> t -> bool
val (=) : t -> t -> bool
val (>) : t -> t -> bool
val (<) : t -> t -> bool
val (<>) : t -> t -> bool
val abs : t -> t
val neg : t -> t
val of_int : int -> t

Note that this doesn't round trip in either direction. For example, Float.to_int (Float.of_int max_int) <> max_int.

module O_dot : sig ... end

Similar to O, except that operators are suffixed with a dot, allowing one to have both int and float operators in scope simultaneously.

String conversions

val to_string : t -> string @@ portable

to_string x builds a string s representing the float x that guarantees the round trip, that is such that Float_u.equal x (Float_u.of_string s).

It usually yields as few significant digits as possible. That is, it won't print 3.14 as 3.1400000000000001243. The only exception is that occasionally it will output 17 significant digits when the number can be represented with just 16 (but not 15 or less) of them.

val of_string : string -> t @@ portable

of_string is inverse to to_string.

val to_string_hum : ?delimiter:char -> ?decimals:int -> ?strip_zero:bool -> ?explicit_plus:bool -> t -> string @@ portable

Pretty print float, for example to_string_hum ~decimals:3 1234.1999 = "1_234.200" to_string_hum ~decimals:3 ~strip_zero:true 1234.1999 = "1_234.2" . No delimiters are inserted to the right of the decimal.

val to_padded_compact_string : t -> string @@ portable

Produce a lossy compact string representation of the float. The float is scaled by an appropriate power of 1000 and rendered with one digit after the decimal point, except that the decimal point is written as '.', 'k', 'm', 'g', 't', or 'p' to indicate the scale factor. (However, if the digit after the "decimal" point is 0, it is suppressed.)

The smallest scale factor that allows the number to be rendered with at most 3 digits to the left of the decimal is used. If the number is too large for this format (i.e., the absolute value is at least 999.95e15), scientific notation is used instead. E.g.:

  • to_padded_compact_string (-0.01) = "-0 "
  • to_padded_compact_string 1.89 = "1.9"
  • to_padded_compact_string 999_949.99 = "999k9"
  • to_padded_compact_string 999_950. = "1m "

In the case where the digit after the "decimal", or the "decimal" itself is omitted, the numbers are padded on the right with spaces to ensure the last two columns of the string always correspond to the decimal and the digit afterward (except in the case of scientific notation, where the exponent is the right-most element in the string and could take up to four characters).

  • to_padded_compact_string 1. = "1 "
  • to_padded_compact_string 1.e6 = "1m "
  • to_padded_compact_string 1.e16 = "1.e+16"
  • to_padded_compact_string max_finite_value = "1.8e+308"

Numbers in the range -.05 < x < .05 are rendered as "0 " or "-0 ".

Other cases:

  • to_padded_compact_string nan = "nan "
  • to_padded_compact_string infinity = "inf "
  • to_padded_compact_string neg_infinity = "-inf "

Exact ties are resolved to even in the decimal:

  • to_padded_compact_string 3.25 = "3.2"
  • to_padded_compact_string 3.75 = "3.8"
  • to_padded_compact_string 33_250. = "33k2"
  • to_padded_compact_string 33_350. = "33k4"

to_padded_compact_string is defined in terms of to_padded_compact_string_custom below as

  let to_padded_compact_string t =
    to_padded_compact_string_custom
      t
      ?prefix:None
      ~kilo:"k"
      ~mega:"m"
      ~giga:"g"
      ~tera:"t"
      ~peta:"p"
      ()
  ;;
val to_padded_compact_string_custom : t -> ?prefix:string -> kilo:string -> mega:string -> giga:string -> tera:string -> ?peta:string -> unit -> string @@ portable

Similar to to_padded_compact_string but allows the user to provide different abbreviations. This can be useful to display currency values, e.g. $1mm3, where prefix="$", mega="mm".

Exponents and trigonometry

val int_pow : t -> int -> t @@ portable

int_pow x n computes x ** float n via repeated squaring. It is generally much faster than **.

Note that int_pow x 0 always returns 1., even if x = nan. This coincides with x ** 0. and is intentional.

For n >= 0 the result is identical to an n-fold product of x with itself under *., with a certain placement of parentheses. For n < 0 the result is identical to int_pow (1. /. x) (-n).

The error will be on the order of |n| ulps, essentially the same as if you perturbed x by up to a ulp and then exponentiated exactly.

Benchmarks show a factor of 5-10 speedup (relative to **) for exponents up to about 1000 (approximately 10ns vs. 70ns). For larger exponents the advantage is smaller but persists into the trillions. For a recent or more detailed comparison, run the benchmarks.

Depending on context, calling this function might or might not allocate 2 minor words. Even if called in a way that causes allocation, it still appears to be faster than **.

val square : t -> t @@ portable

square x returns x *. x.

val ldexp : t -> int -> t @@ portable

ldexp x n returns x *. 2 ** n

val log10 : t -> t @@ portable

Base 10 logarithm.

val log2 : t -> t @@ portable

Base 2 logarithm.

val expm1 : t -> t @@ portable

expm1 x computes exp x -. 1.0, giving numerically-accurate results even if x is close to 0.0.

val log1p : t -> t @@ portable

log1p x computes log(1.0 +. x) (natural logarithm), giving numerically-accurate results even if x is close to 0.0.

val copysign : t -> t -> t @@ portable

copysign x y returns a float whose absolute value is that of x and whose sign is that of y. If x is nan, returns nan. If y is nan, returns either x or -. x, but it is not specified which.

val cos : t -> t @@ portable

Cosine. Argument is in radians.

val sin : t -> t @@ portable

Sine. Argument is in radians.

val tan : t -> t @@ portable

Tangent. Argument is in radians.

val acos : t -> t @@ portable

Arc cosine. The argument must fall within the range [-1.0, 1.0]. Result is in radians and is between 0.0 and pi.

val asin : t -> t @@ portable

Arc sine. The argument must fall within the range [-1.0, 1.0]. Result is in radians and is between -pi/2 and pi/2.

val atan : t -> t @@ portable

Arc tangent. Result is in radians and is between -pi/2 and pi/2.

val atan2 : t -> t -> t @@ portable

atan2 y x returns the arc tangent of y /. x. The signs of x and y are used to determine the quadrant of the result. Result is in radians and is between -pi and pi.

val hypot : t -> t -> t @@ portable

hypot x y returns sqrt(x *. x + y *. y), that is, the length of the hypotenuse of a right-angled triangle with sides of length x and y, or, equivalently, the distance of the point (x,y) to origin.

val cosh : t -> t @@ portable

Hyperbolic cosine. Argument is in radians.

val sinh : t -> t @@ portable

Hyperbolic sine. Argument is in radians.

val tanh : t -> t @@ portable

Hyperbolic tangent. Argument is in radians.

val acosh : t -> t @@ portable

Hyperbolic arc cosine. The argument must fall within the range [1.0, inf]. Result is in radians and is between 0.0 and inf.

val asinh : t -> t @@ portable

Hyperbolic arc sine. The argument and result range over the entire real line. Result is in radians.

val atanh : t -> t @@ portable

Hyperbolic arc tangent. The argument must fall within the range [-1.0, 1.0]. Result is in radians and ranges over the entire real line.

val sqrt : t -> t @@ portable

Square root.

val exp : t -> t @@ portable

Exponential.

val log : t -> t @@ portable

Natural logarithm.

Classification and representation

module Class = Base.Float.Class

Excluding nan the floating-point "number line" looks like:

val classify : t -> Class.t @@ portable
val sign : t -> Core.Sign.t @@ portable
  • deprecated [since 2016-01] Replace [sign] with [robust_sign] or [sign_exn]
val sign_exn : t -> Core.Sign.t @@ portable

The sign of a float. Both -0. and 0. map to Zero. Raises on nan. All other values map to Neg or Pos.

val sign_or_nan : t -> Core.Sign_or_nan.t @@ portable

The sign of a float, with support for NaN. Both -0. and 0. map to Zero. All NaN values map to Nan. All other values map to Neg or Pos.

These functions construct and destruct 64-bit floating point numbers based on their IEEE representation with a sign bit, an 11-bit non-negative (biased) exponent, and a 52-bit non-negative mantissa (or significand). See Wikipedia for details of the encoding.

In particular, if 1 <= exponent <= 2046, then:

  create_ieee_exn ~negative:false ~exponent ~mantissa
  = (2 ** (exponent - 1023)) * (1 + ((2 ** -52) * mantissa))
val create_ieee_exn : negative:bool -> exponent:int -> mantissa:Core.Int63.t -> t @@ portable
val ieee_negative : t -> bool @@ portable
val ieee_exponent : t -> int @@ portable
val ieee_mantissa : t -> Core.Int63.t @@ portable
val select : bool -> t -> t -> t @@ portable

Branchless, as Bool.select.

val first_non_nan : t -> t -> t @@ portable

Branchless.

val to_bits : t -> int64 @@ portable
val of_bits : int64 -> t @@ portable

Arrays

module type Array_getters_and_setters := sig ... end
module type Array = sig ... end
module Array : sig ... end

The Array module provides some helpers that wrap common operations on floatarrays with appropriate boxing or unboxing to work with float#.

module Polymorphic_array_helpers : Array_getters_and_setters with type t := float array and type elt := float

The Polymorphic_array_helpers module provides some helpers that wrap common operations on float arrays with appropriate boxing or unboxing to work with float#.

module type Ref = sig ... end
module Ref : sig ... end
module Option : sig ... end
module Stable : sig ... end