forked from jfdm/idris-containers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontainers.ipkg
60 lines (41 loc) · 1.22 KB
/
containers.ipkg
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
package containers
author = Jan de Muijnck-Hughes
maintainer = Jan de Muijnck-Hughes
license = BSD3 but see LICENSE for more information
brief = "Containers."
readme = README.md
sourceloc = git://[email protected]:jfdm/idris-containers.git
bugtracker = http://www.github.com/jfdm/idris-containers/issues
pkgs = contrib, effects
opts = "--warnreach"
modules = Data.AVL
, Data.AVL.BTree
, Data.AVL.Dict
, Data.AVL.Set
, Data.AVL.Graph
, Data.RedBlack.Tree
, Data.RoseTree
, Data.Stack
, Data.Queue
, Data.DList
, Data.DList.Eff
, Data.DVect
, Data.PList
, Data.DeBruijn
, Data.List.Predicates
, Data.Algebraic.Graph
-- Modules for testing.
, Data.AVL.Test.Dict
, Data.AVL.Test.Set
, Data.AVL.Test.Graph
, Data.Test.Stack
, Data.Test.Queue
, Data.Test.RedBlack
-- Utility for generating random values
, Test.Random.Values
tests = Data.Test.Stack.runTest
, Data.Test.Queue.runTest
, Data.Test.RedBlack.runTest
, Data.AVL.Test.Dict.runTest
, Data.AVL.Test.Set.runTest
, Data.AVL.Test.Graph.runTest