forked from fjarri/haskell-random123
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRandom123.cabal
More file actions
73 lines (65 loc) · 1.95 KB
/
Random123.cabal
File metadata and controls
73 lines (65 loc) · 1.95 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Name: Random123
Version: 0.2.0
Synopsis: Haskell port of Random123 library
Description:
This is a Haskell port of counter-based random number generators from the Random123 library
(<http://www.thesalmons.org/john/random123/>) v1.07 (with a minor bugfix).
The description of algorithms can be also found in
Salmon et al., P. Int. C. High. Perform. 16 (2011)
(<http://dx.doi.org/doi:10.1145/2063384.2063405>).
Homepage: http://github.com/Manticore/haskell-random123
License: MIT
License-file: LICENSE
Author: Bogdan Opanchuk <bogdan@opanchuk.net>
Maintainer: Bogdan Opanchuk <bogdan@opanchuk.net>
Category: Random
Build-type: Simple
Cabal-version: >=1.8
Extra-source-files:
README.rst
test/*.sh
Source-repository head
type: git
location: http://github.com/Manticore/haskell-random123.git
branch: develop
Source-repository this
type: git
location: http://github.com/Manticore/haskell-random123.git
tag: 0.2.0
Library
Exposed-modules:
System.Random.Random123
System.Random.Random123.Misc
System.Random.Random123.Threefry
System.Random.Random123.Philox
System.Random.Random123.Types
System.Random.Random123.RandomGen
Build-Depends:
base >= 4.7.0.0 && < 5.0,
array >= 0.4,
data-dword,
random >= 1.0.0.0
Test-Suite test
Type: exitcode-stdio-1.0
Hs-source-dirs: test
Main-is: test.hs
Other-modules: TestPhilox TestThreefry TestRandomGen TestTypeclasses
Build-depends:
base >= 4.4 && < 5.0,
random >= 1.0,
test-framework >= 0.8,
test-framework-hunit >= 0.3,
test-framework-quickcheck2 >= 0.3,
HUnit >= 1.2,
QuickCheck >= 2.5,
Random123
Benchmark test_perf
Type: exitcode-stdio-1.0
Hs-source-dirs: test
Main-is: test_perf.hs
Build-depends:
base >= 4.4 && < 5.0,
random >= 1.0,
criterion >= 0.6 && < 1.0,
Random123
Ghc-options: -O2