-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTreeStructures.cabal
More file actions
25 lines (23 loc) · 909 Bytes
/
TreeStructures.cabal
File metadata and controls
25 lines (23 loc) · 909 Bytes
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
Name: TreeStructures
Version: 0.0.3
Synopsis: A collection of heaps and search trees
Description: This package presently includes binary heaps, binomial heaps, pairing, skew heaps, splay trees, and AVL trees.
License: BSD3
License-file: LICENSE
Author: Brendan Hickey
Maintainer: Brendan Hickey
Homepage: http://www.github.com/bhickey/TreeStructures
Stability: Experimental
Category: Data Structures
Build-Type: Simple
Cabal-Version: >=1.2
extra-source-files: Tests.hs README
Library
Build-Depends: base >= 2 && < 5, QuickCheck >= 2.1
Exposed-modules: Data.Heap.Binary
Data.Heap.Binomial
Data.Heap.Pairing
Data.Heap.Skew
Data.Tree.Splay
Data.Tree.AVL
ghc-options: -Wall