Copyright | (c) 2012-2013 Michał Pałka |
---|---|
License | BSD3 |
Maintainer | michal.palka@chalmers.se |
Stability | experimental |
Portability | portable |
Safe Haskell | None |
Language | Haskell98 |
This module exports System.Random.TF.Gen and System.Random.TF.Init
modules without exporting the alternative RandomGen
class from System.Random.TF.Gen. To use this class and the Random
instances written for it, please import System.Random.TF.Gen and System.Random.TF.Instances
directly.
Documentation
The generator type
seedTFGen :: (Word64, Word64, Word64, Word64) -> TFGen Source #
Create a generator from a random seed.
mkSeedTime :: IO (Word64, Word64, Word64, Word64) Source #
Use system time create the random seed. This method of seeding may not be relible.
mkSeedUnix :: IO (Word64, Word64, Word64, Word64) Source #
Use the UNIX special file /dev/urandom
to create the seed.
Inspired by random-mwc
.
Derive a new generator instance from the global RNG using split.
This is the default way of obtaining a new RNG instance.
Initial generator is seeded using mkSeedUnix
on UNIX,
and mkSeedTime
otherwise. This should be eventually
replaced with proper seeding.