-
Notifications
You must be signed in to change notification settings - Fork 10
/
structures.cabal
262 lines (219 loc) · 5.35 KB
/
structures.cabal
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
name: structures
category: Data, Structures
version: 0.2
license: BSD3
cabal-version: >= 1.8
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <[email protected]>
stability: experimental
homepage: http://github.com/ekmett/structures
bug-reports: http://github.com/ekmett/structures/issues
copyright: Copyright (C) 2013 Edward A. Kmett
build-type: Custom
synopsis: "Advanced" Data Structures
extra-source-files:
.travis.yml
.gitignore
.vim.custom
CHANGELOG.markdown
README.markdown
description:
This package is a playground for working with several types of advanced data structures including
wavelet trees and cache oblivious lookahead arrays.
source-repository head
type: git
location: git://github.com/ekmett/structures.git
-- You can disable the QuickCheck tests with -f-test-properties
flag test-properties
default: True
manual: True
-- You can disable the HUnit tests with -f-test-hunit
-- NB: We have no hunit tests, so this is disabled.
flag test-hunit
default: False
manual: True
-- You can disable the doctests test suite with -f-test-doctests
flag test-doctests
default: True
manual: True
-- You can disable the hlint test suite with -f-test-hlint
flag test-hlint
default: True
manual: True
flag threaded
default: True
manual: True
flag llvm
default: False
manual: True
library
build-depends:
base >= 4.8 && < 5,
containers >= 0.5 && < 0.6,
contravariant >= 0.4.2 && < 2,
deepseq >= 1.1 && < 1.5,
free >= 4.6.1 && < 5,
ghc,
ghc-prim,
hashable >= 1.2.1 && < 1.3,
hybrid-vectors >= 0.1 && < 1,
lens >= 4 && < 5,
monad-st >= 0.2.2 && < 1,
parallel >= 3.2 && < 3.3,
primitive >= 0.5 && < 0.7,
semigroups >= 0.9 && < 1,
transformers >= 0.3 && < 0.5,
vector >= 0.10 && < 0.11,
vector-algorithms >= 0.5 && < 0.8
hs-source-dirs: src
exposed-modules:
Data.Vector.Array
Data.Vector.Heap
Data.Vector.Map
Data.Vector.Map.Deamortized
Data.Vector.Map.Ephemeral
Data.Vector.Map.Fusion
Data.Vector.Set
Data.Vector.Set.Fusion
Data.Vector.Slow
ghc-options: -Wall
if flag(llvm)
ghc-options: -fllvm
test-suite properties
type: exitcode-stdio-1.0
main-is: properties.hs
ghc-options: -w
hs-source-dirs: tests
if flag(threaded)
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(llvm)
ghc-options: -fllvm
if !flag(test-properties)
buildable: False
else
build-depends:
base,
structures,
deepseq,
QuickCheck >= 2.4,
tasty >= 0.3,
tasty-quickcheck >= 0.3,
tasty-th >= 0.1.1
test-suite hunit
type: exitcode-stdio-1.0
main-is: hunit.hs
ghc-options: -w
hs-source-dirs: tests
if flag(threaded)
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(llvm)
ghc-options: -fllvm
if !flag(test-hunit)
buildable: False
else
build-depends:
base,
structures,
QuickCheck >= 2.4,
tasty >= 0.3,
tasty-hunit >= 0.2,
tasty-th >= 0.1.1
test-suite hlint
type: exitcode-stdio-1.0
main-is: hlint.hs
ghc-options: -w
hs-source-dirs: tests
if flag(threaded)
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(llvm)
ghc-options: -fllvm
if !flag(test-hlint)
buildable: False
else
build-depends:
base,
hlint >= 1.7
-- Verify the results of the examples
test-suite doctests
type: exitcode-stdio-1.0
main-is: doctests.hs
ghc-options: -Wall
hs-source-dirs: tests
if flag(threaded)
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(llvm)
ghc-options: -fllvm
if !flag(test-doctests)
buildable: False
else
build-depends:
base,
bytestring,
containers,
directory >= 1.0,
deepseq,
doctest >= 0.9.1,
filepath,
semigroups >= 0.9,
unordered-containers
if impl(ghc<7.6.1)
ghc-options: -Werror
benchmark maps
type: exitcode-stdio-1.0
main-is: maps.hs
ghc-options: -Wall
hs-source-dirs: benchmarks
buildable: False
if flag(threaded)
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(llvm)
ghc-options: -fllvm
build-depends:
array,
base,
containers,
criterion,
mwc-random,
structures,
unordered-containers,
vector
benchmark lookups
type: exitcode-stdio-1.0
main-is: lookups.hs
ghc-options: -Wall
hs-source-dirs: benchmarks
buildable: False
if flag(threaded)
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(llvm)
ghc-options: -fllvm
build-depends:
array,
base,
containers,
criterion,
deepseq,
MonadRandom,
structures,
unordered-containers,
vector
benchmark inserts
type: exitcode-stdio-1.0
main-is: inserts.hs
ghc-options: -Wall
hs-source-dirs: benchmarks
if flag(threaded)
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(llvm)
ghc-options: -fllvm
build-depends:
array,
base,
containers,
criterion,
deepseq,
MonadRandom,
structures,
unordered-containers,
vector