Idris2Doc : Control.Monad.Bayes.Sampler

Control.Monad.Bayes.Sampler

(source)

Definitions

SamplerIO : Type->Type
  An 'IO' based random sampler.

Visibility: public export
sampleIO : SamplerIOa->IOa
  Initialize a pseudo-random number generator using randomness supplied by the operating system. Providing the randomness, i.e. setting the random seed, is done automatically, so this is just `id`.

Visibility: public export
sampleIOwith : SamplerIOa->Bits64->IOa
  Like 'sampleIO' but with a custom seed.

Visibility: public export