summaryrefslogtreecommitdiff
blob: e0647d4f38b46c4301ce24717d3cea59cb2cdcd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
	<maintainer type="project">
		<email>haskell@gentoo.org</email>
		<name>Gentoo Haskell</name>
	</maintainer>
	<use>
		<flag name="optimised-mixer">Use JavaScript for mix32</flag>
		<flag name="random">Providen RandomGen SMGen instance</flag>
	</use>
	<longdescription>
		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 &amp; Applications (OOPSLA '14). ACM,
		New York, NY, USA, 453-472. DOI:
		&lt;https://doi.org/10.1145/2660193.2660195&gt;
		
		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).
	</longdescription>
</pkgmetadata>