-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsym.cabal
72 lines (64 loc) · 2.3 KB
/
sym.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
name: sym
version: 0.14.0
synopsis: Permutations, patterns, and statistics
description:
Definitions for permutations with an emphasis on permutation
patterns and permutation statistics.
homepage: https://github.com/akc/sym
license: BSD3
license-file: LICENSE
author: Anders Claesson
maintainer: anders.claesson@gmail.com
category: Math
build-type: Simple
cabal-version: >=1.9
source-repository head
type: git
location: git://github.com/akc/sym.git
library
default-language: Haskell2010
exposed-modules: Sym
Sym.Perm
Sym.Perm.Meta
Sym.Perm.SSYT
Sym.Perm.Component
Sym.Perm.Constructions
Sym.Perm.D8
Sym.Perm.Group
Sym.Perm.Bijection
Sym.Perm.Stat
Sym.Perm.ListStat
Sym.Perm.Sort
Sym.Perm.Simple
Sym.Perm.Pattern
Sym.Perm.MeshPattern
Sym.Perm.Class
Sym.Permgram
Sym.Internal.SubSeq
Sym.Internal.CLongArray
Sym.Internal.Size
Sym.Internal.Util
build-depends: base >=4.7 && <= 5,
vector >=0.11 && <= 1,
hashable >=1.1 && <= 2,
containers >= 0.6 && <= 1
ghc-options: -Wall -O2
cc-options: -Wall
c-sources: cbits/rank.c
cbits/stat.c
cbits/d8.c
cbits/group.c
cbits/bij.c
cbits/ordiso.c
cbits/bit.c
cbits/simple.c
cbits/sortop.c
Test-Suite Props
default-language: Haskell2010
type: exitcode-stdio-1.0
Main-is: Properties.hs
hs-source-dirs: tests
Build-depends: base >=4.7 && <= 5,
sym,
hashable >=1.1,
QuickCheck >=2.5