-
Notifications
You must be signed in to change notification settings - Fork 4
/
tangles.cabal
188 lines (176 loc) · 6.83 KB
/
tangles.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
name: tangles
version: 0.0
author: Alexander Mishunin
maintainer: [email protected]
stability: Experimental
license: LGPL-3
license-file: LICENSE
synopsis: Enumeration algorithms for some knot theory objects
description: See http://arxiv.org/abs/0712.3859
category: Math
build-type: Simple
cabal-version: >=1.18
homepage: http://github.com/mishun/tangles/
source-repository head
type: git
location: https://github.com/mishun/tangles.git
flag internal-tests
description: Export test modules and functions
default: False
library
default-language: Haskell2010
default-extensions: BangPatterns
ghc-options: -Wall
ghc-prof-options: -prof -auto-all -caf-all
cc-options: -Wall -std=c++11
build-tools: c2hs
build-depends:
base >=4.8,
vector >=0.11,
array,
matrix,
deepseq >=1.4,
parallel,
mtl,
containers,
disjoint-set ==0.2,
IfElse,
HaskellForMaths
hs-source-dirs: src
c-sources:
src/Math/Topology/KnotTh/SurfaceGraph/SphereStar/Backtrack.cpp
extra-libraries: stdc++
include-dirs: src/
exposed-modules:
Math.Topology.KnotTh.Algebra,
Math.Topology.KnotTh.Algebra.Cobordism,
Math.Topology.KnotTh.Algebra.Cobordism.CobordismMatrix,
Math.Topology.KnotTh.Algebra.Cobordism.DottedCobordism,
Math.Topology.KnotTh.Algebra.Dihedral,
Math.Topology.KnotTh.Algebra.Dihedral.D4,
Math.Topology.KnotTh.Algebra.Dihedral.Dn,
Math.Topology.KnotTh.Algebra.Homology,
Math.Topology.KnotTh.Algebra.PlanarAlgebra,
Math.Topology.KnotTh.Algebra.PlanarAlgebra.CableAlgebra,
Math.Topology.KnotTh.Algebra.PlanarAlgebra.Reduction,
Math.Topology.KnotTh.Algebra.SurfaceDiagram,
Math.Topology.KnotTh.ChordDiagram,
Math.Topology.KnotTh.ChordDiagram.Lyndon,
Math.Topology.KnotTh.EmbeddedLink,
Math.Topology.KnotTh.Enumeration.DiagramInfo,
Math.Topology.KnotTh.Enumeration.DiagramInfo.AllDiagramsInfo,
Math.Topology.KnotTh.Enumeration.DiagramInfo.MinimalDiagramInfo,
Math.Topology.KnotTh.Enumeration.EquivalenceClasses,
Math.Topology.KnotTh.Enumeration.SiftByInvariant,
Math.Topology.KnotTh.Invariants,
Math.Topology.KnotTh.Invariants.DubrovnikPolynomial,
Math.Topology.KnotTh.Invariants.LinkingNumbers,
Math.Topology.KnotTh.Invariants.HomflyPolynomial,
Math.Topology.KnotTh.Invariants.KauffmanXPolynomial,
Math.Topology.KnotTh.Invariants.KhovanovHomology,
Math.Topology.KnotTh.Knotted,
Math.Topology.KnotTh.Knotted.Crossings.Diagram,
Math.Topology.KnotTh.Knotted.Crossings.Projection,
Math.Topology.KnotTh.Knotted.Crossings.Singular,
Math.Topology.KnotTh.Knotted.Crossings.SubTangle,
Math.Topology.KnotTh.Knotted.EdgeIndicesEncoding,
Math.Topology.KnotTh.Knotted.Threads,
Math.Topology.KnotTh.Moves.ModifyDSL,
Math.Topology.KnotTh.Moves.Moves,
Math.Topology.KnotTh.Moves.MovesOfELink,
Math.Topology.KnotTh.Moves.PatternMatching,
Math.Topology.KnotTh.Moves.AdHoc,
Math.Topology.KnotTh.SurfaceGraph,
Math.Topology.KnotTh.SurfaceGraph.Homology,
Math.Topology.KnotTh.SurfaceGraph.SphereStar,
Math.Topology.KnotTh.SurfaceGraph.SphereStar.Backtrack,
Math.Topology.KnotTh.SurfaceLink,
Math.Topology.KnotTh.Tabulation.CanonicalConstructionPath,
Math.Topology.KnotTh.Tabulation.LinkDiagrams,
Math.Topology.KnotTh.Tabulation.TangleDiagramsCascade,
Math.Topology.KnotTh.Tabulation.TangleFlypeClasses,
Math.Topology.KnotTh.Tabulation.TangleStarGlue,
Math.Topology.KnotTh.Tangle
other-modules:
Math.Topology.KnotTh.Invariants.KnotPolynomials,
Math.Topology.KnotTh.Invariants.KnotPolynomials.Surface,
Math.Topology.KnotTh.Moves.AdHoc.Resting,
Math.Topology.KnotTh.SurfaceGraph.SurfaceGraphDef,
Math.Topology.KnotTh.Tabulation.TangleDiagramsCascade.IncrementalTests,
Math.Topology.KnotTh.Tabulation.TangleDiagramsCascade.RootingTest,
Math.Topology.KnotTh.Tabulation.TangleFlypeClasses.Flypes,
Math.Topology.KnotTh.Tangle.CascadeCode,
Math.Topology.KnotTh.Tangle.GaussCode,
Math.Topology.KnotTh.Tangle.RootCode,
Math.Topology.KnotTh.Tangle.TableOfLinks,
Math.Topology.KnotTh.Tangle.TangleCat,
Math.Topology.KnotTh.Tangle.TangleDef
if flag(internal-tests)
cpp-options: -DTESTING
exposed-modules:
Math.Topology.KnotTh.Invariants.Util.Poly
else
other-modules:
Math.Topology.KnotTh.Invariants.Util.Poly
test-suite TestTangles
type: exitcode-stdio-1.0
default-language: Haskell2010
default-extensions: BangPatterns
ghc-options: -Wall -threaded
ghc-prof-options: -rtsopts -prof -auto-all -caf-all
build-depends:
base >=4.6,
containers,
mtl,
HaskellForMaths,
HUnit,
QuickCheck ==2.*,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
tangles
main-is: TestTangles.hs
other-modules:
Math.Topology.KnotTh.Algebra.Cobordism.CobordismMatrix.Test,
Math.Topology.KnotTh.Algebra.Cobordism.DottedCobordism.Test,
Math.Topology.KnotTh.Algebra.Cobordism.Test,
Math.Topology.KnotTh.ChordDiagram.Test,
Math.Topology.KnotTh.EmbeddedLink.Test,
Math.Topology.KnotTh.Enumeration.Applied.Test,
Math.Topology.KnotTh.Invariants.Test,
Math.Topology.KnotTh.Tabulation.Test,
Math.Topology.KnotTh.Tangle.Test,
TestUtil.Table
hs-source-dirs: test
if flag(internal-tests)
cpp-options: -DTESTING
benchmark TangleGeneratorBenchmark
type: exitcode-stdio-1.0
default-language: Haskell2010
default-extensions: BangPatterns
ghc-options: -Wall -threaded
ghc-prof-options: -rtsopts -prof -auto-all -caf-all
build-depends:
base >=4.6,
mtl,
containers,
HUnit,
tangles
main-is: TangleGeneratorBenchmark.hs
hs-source-dirs: test
benchmark KnotPolynomialsBenchmark
type: exitcode-stdio-1.0
default-language: Haskell2010
default-extensions: BangPatterns
ghc-options: -Wall -threaded
ghc-prof-options: -rtsopts -prof -auto-all -caf-all
build-depends:
base >=4.6,
array,
mtl,
containers,
criterion,
HUnit,
tangles
main-is: KnotPolynomialsBenchmark.hs
hs-source-dirs: test