forked from haskell-rewriting/union-find-array
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunion-find-array.cabal
44 lines (42 loc) · 1.34 KB
/
union-find-array.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
name: union-find-array
version: 0.1.0.3
stability: experimental
author: Bertram Felgenhauer
maintainer: Bertram Felgenhauer <int-e@gmx.de>
copyright: Copyright (c) 2010-2013, Bertram Felgenhauer
license: MIT
license-file: LICENSE
category: Algorithms, Data
synopsis: union find data structure
description:
ST based implementation of Tarjan\'s disjoint set forests, using mutable
arrays storing indices instead of references internally. There is also
a pure, immutable version of the data structure, which is useful for
querying the result of a union find construction.
homepage: https://github.com/haskell-rewriting/union-find-array
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/haskell-rewriting/union-find-array
library
hs-source-dirs:
src
exposed-modules:
Data.Union
Data.Union.ST
Data.Union.Type
Control.Monad.Union.Class
Control.Monad.Union
build-depends:
array >= 0.3 && < 0.6,
mtl >= 1.1 && < 2.4,
base >= 4 && < 5
default-language: Haskell2010
other-extensions:
GeneralizedNewtypeDeriving
RankNTypes
MultiParamTypeClasses
FunctionalDependencies
FlexibleInstances
UndecidableInstances