-
Notifications
You must be signed in to change notification settings - Fork 0
/
okasaki-pfds.cabal
102 lines (98 loc) · 3.73 KB
/
okasaki-pfds.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
-- Initial okasaki-pfds.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: okasaki-pfds
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-3
license-file: LICENSE
author: Brian
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
ghc-options: -Wall
-- exposed-modules:
exposed-modules: Util
-- no chap 1
, Chap02.Exercise01
, Chap02.Exercise02
, Chap02.Exercise03
, Chap02.Exercise04
, Chap02.Exercise05
, Chap02.Exercise06
, Chap02.Data.Set
, Chap02.Data.BinaryTree
, Chap02.Data.UnbalancedSet
, Chap02.Data.UnbalancedSet2
, Chap02.Data.UnbalancedSet3
, Chap02.Data.UnbalancedSet4
, Chap02.Data.FiniteMap
----
---- no ex 1
, Chap03.Exercise02
, Chap03.Exercise03
, Chap03.Exercise04
, Chap03.Exercise05
, Chap03.Exercise06
, Chap03.Exercise07
-- no ex 8
, Chap03.Exercise09
, Chap03.Exercise10
, Chap03.Data.TaggedBinaryTree
, Chap03.Data.LeftistHeap
, Chap03.Data.LeftistHeap2
, Chap03.Data.LeftistHeap4
, Chap03.Data.Heap
, Chap03.Data.BinomialTree.Ranked
, Chap03.Data.BinomialHeap.Ranked
, Chap03.Data.BinomialTree.Unranked
, Chap03.Data.BinomialHeap.Unranked
, Chap03.Data.RedBlackTree
, Chap03.Data.RedBlackTree10
--
-- no ex 1
, Chap04.Exercise02
----
, Chap05.Data.Queue
, Chap05.Data.Deque
, Chap05.Data.SplayHeap
, Chap05.Data.SplayHeap.Exercise04
, Chap05.Data.PairingHeap
, Chap05.Data.PairingHeap.Exercise08
, Chap05.Data.BatchedDeque
, Chap05.Data.BinaryTree
, Chap05.Exercise01
, Chap05.Exercise04
, Chap05.Exercise07
, Chap05.Exercise08
----
, Chap06.Data.Sortable
, Chap06.Data.BottomUpMergeSort
, Chap06.Exercise07
----
, Chap07.Data.BinomialHeap
, Chap07.Exercise04
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8
, QuickCheck
hs-source-dirs: src
default-language: Haskell2010
test-suite Tests
hs-source-dirs: test
main-is: Suites.hs
type: exitcode-stdio-1.0
ghc-options: -Wall
build-depends: base >=4.7 && <4.8
, okasaki-pfds
, Cabal >= 1.16.0
, containers
, QuickCheck
, HUnit
, test-framework
, test-framework-hunit
, test-framework-quickcheck2