package prbnmcn-basic-structures

  1. Overview
  2. Docs

Real numbers implemented as floating point numbers

include Basic_intf.Field_std with type t = float
type t = float
val zero : t
val add : t -> t -> t
val neg : t -> t
val one : t
val mul : t -> t -> t
val sub : t -> t -> t
val div : t -> t -> t
val compare : t -> t -> int
val equal : t -> t -> bool
val pp : Format.formatter -> t -> unit
val hash : t -> int
val lebesgue : Random.State.t -> t

Lebesgue on the interval 0;1

val (+) : t -> t -> t
val (-) : t -> t -> t
val (*) : t -> t -> t
val (/) : t -> t -> t
include Basic_intf.Infix_order with type t := t and type 'a m := 'a
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 npow : t -> int -> t

npow x n is x tp the power of n.

val to_float : t -> float
val of_float : float -> t
val of_int : int -> t