Documentation

Init.Data.Random

Basic random number generator support based on the one available on the Haskell library

class RandomGen (g : Type u) :

Interface for random number generators.

  • range : gNat × Nat

    range returns the range of values returned by the generator.

  • next : gNat × g

    next operation returns a natural number that is uniformly distributed the range returned by range (including both end points), and a new generator.

  • split : gg × g

    The 'split' operation allows one to obtain two distinct random number generators. This is very useful in functional programs (for example, when passing a random number generator down to recursive calls).

Instances
structure StdGen :

"Standard" random number generator.

Instances For
Equations
  • One or more equations did not get rendered due to their size.
def mkStdGen (s : Nat := 0) :

Return a standard number generator.

def randNat {gen : Type u} [RandomGen gen] (g : gen) (lo hi : Nat) :
Nat × gen

Generate a random natural number in the interval [lo, hi].

Equations
  • One or more equations did not get rendered due to their size.
def randBool {gen : Type u} [RandomGen gen] (g : gen) :
Bool × gen

Generate a random Boolean.

Equations
def IO.rand (lo hi : Nat) :