automaton-1.3: Effectful streams and automata in initial encoding
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.Automaton.Trans.Random

Description

An Automatons in a monad supporting random number generation (i.e. having the RandT layer in its stack) can be run.

Running means supplying an initial random number generator, where the update of the generator at every random number generation is already taken care of.

Under the hood, RandT is basically just StateT, with the current random number generator as mutable state.

Synopsis

Documentation

runRandS Source #

Arguments

:: (RandomGen g, Functor m, Monad m) 
=> Automaton (RandT g m) a b 
-> g

The initial random number generator.

-> Automaton m a (g, b) 

Run an Automaton in the RandT random number monad transformer by supplying an initial random generator. Updates and outputs the generator every step.

evalRandS :: (RandomGen g, Functor m, Monad m) => Automaton (RandT g m) a b -> g -> Automaton m a b Source #

Evaluate an Automaton in the RandT transformer, i.e. extract possibly random values by supplying an initial random generator. Updates the generator every step but discards the generator.

getRandomS :: (MonadRandom m, Random b) => Automaton m a b Source #

Create a stream of random values.

getRandomsS :: (MonadRandom m, Random b) => Automaton m a [b] Source #

Create a stream of lists of random values.

getRandomRS :: (MonadRandom m, Random b) => (b, b) -> Automaton m a b Source #

Create a stream of random values in a given fixed range.

getRandomRS_ :: (MonadRandom m, Random b) => Automaton m (b, b) b Source #

Create a stream of random values in a given range, where the range is specified on every tick.

getRandomsRS :: (MonadRandom m, Random b) => (b, b) -> Automaton m a [b] Source #

Create a stream of lists of random values in a given fixed range.

getRandomsRS_ :: (MonadRandom m, Random b) => Automaton m (b, b) [b] Source #

Create a stream of lists of random values in a given range, where the range is specified on every tick.