-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdisjoint-set.cabal
More file actions
46 lines (42 loc) · 1.6 KB
/
disjoint-set.cabal
File metadata and controls
46 lines (42 loc) · 1.6 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
Name: disjoint-set
Version: 0.2
Synopsis: Persistent disjoint-sets, a.k.a union-find.
Description: This is a persistent data structure for disjoint sets.
.
The algorithm is described in "Introduction to
Algorithms" by Cormen, et al. The implementation here
uses both union by rank and path compression. We
incur an O(logn) overhead because of the use of
persistent maps.
.
Data.IntDisjointSet is as strict as possible.
License: BSD3
License-file: LICENSE
Author: Maxwell Sayles, Myles Maxfield
Maintainer: <maxwellsayles@gmail.com>, <myles.maxfield@gmail.com>
Category: Data
Build-type: Simple
Stability: stable
Homepage: https://github.com/maxwellsayles/disjoint-set
Cabal-version: >= 1.8
source-repository head
type: git
location: git://github.com/maxwellsayles/disjoint-set.git
Library
Exposed-modules: Data.IntDisjointSet
GHC-Options: -O3 -Wall
Build-depends: base >= 3 && < 5,
containers >= 0.3,
mtl >= 2,
transformers >= 0.3
test-suite test
main-is: Test.hs
type: exitcode-stdio-1.0
hs-source-dirs: .
ghc-options: -Wall
build-depends: base >= 3 && < 5,
HUnit,
QuickCheck,
containers >= 0.3,
mtl >= 2,
transformers >= 0.3