* splitmix         (library)
    Synopsis:      Fast Splittable PRNG
    Versions available: 0, 0.0.3, 0.0.4, 0.0.5, 0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4,
                        0.1.0.5 (and 3 others)
    Versions installed: [ Not installed ]
    Homepage:      [ Not specified ]
    Bug reports:   https://github.com/haskellari/splitmix/issues
    Description:   Pure Haskell implementation of SplitMix described in
                   
                   Guy L. Steele, Jr., Doug Lea, and Christine H. Flood. 2014.
                   Fast splittable pseudorandom number generators. In
                   Proceedings of the 2014 ACM International Conference on
                   Object Oriented Programming Systems Languages & Applications
                   (OOPSLA '14). ACM, New York, NY, USA, 453-472. DOI:
                   <https://doi.org/10.1145/2660193.2660195>
                   
                   The paper describes a new algorithm /SplitMix/ for
                   /splittable/ pseudorandom number generator that is quite
                   fast: 9 64 bit arithmetic/logical operations per 64 bits
                   generated.
                   
                   /SplitMix/ is tested with two standard statistical test
                   suites (DieHarder and TestU01, this implementation only using
                   the former) and it appears to be adequate for "everyday" use,
                   such as Monte Carlo algorithms and randomized data structures
                   where speed is important.
                   
                   In particular, it __should not be used for cryptographic or
                   security applications__, because generated sequences of
                   pseudorandom values are too predictable (the mixing functions
                   are easily inverted, and two successive outputs suffice to
                   reconstruct the internal state).
    Category:      System, Random
    License:       BSD3
    Maintainer:    Oleg Grenrus <oleg.grenrus@iki.fi>
    Source repo:   https://github.com/haskellari/splitmix.git
    Flags:         optimised-mixer
    Dependencies:  base >=4.3 && <4.21, deepseq >=1.3.0.0 && <1.6,
                   time >=1.2.0.3 && <1.13, base,
                   HUnit ==1.3.1.2 || >=1.6.0.0 && <1.7, splitmix, base,
                   base-compat-batteries >=0.10.5 && <0.14, splitmix,
                   async >=2.2.1 && <2.3, base,
                   base-compat-batteries >=0.10.5 && <0.14,
                   bytestring >=0.9.1.8 && <0.13, deepseq,
                   process >=1.0.1.5 && <1.7, random, splitmix,
                   tf-random >=0.5 && <0.6, vector >=0.11.0.0 && <0.14, base,
                   splitmix, base, splitmix, base,
                   base-compat >=0.11.1 && <0.14, containers >=0.4.0.0 && <0.8,
                   HUnit ==1.3.1.2 || >=1.6.0.0 && <1.7,
                   math-functions ==0.1.7.0 || >=0.3.3.0 && <0.4, splitmix,
                   test-framework >=0.8.2.0 && <0.9,
                   test-framework-hunit >=0.3.0.2 && <0.4, base,
                   HUnit ==1.3.1.2 || >=1.6.0.0 && <1.7, splitmix, base, random,
                   splitmix, clock >=0.8 && <0.9, base, random, splitmix, base,
                   containers >=0.4.2.1 && <0.8, criterion >=1.1.0.0 && <1.7,
                   random, splitmix, tf-random >=0.5 && <0.6
    Cached:        Yes
    Modules:
        System.Random.SplitMix
        System.Random.SplitMix32

