-
Notifications
You must be signed in to change notification settings - Fork 3
/
eqsat.cabal
204 lines (195 loc) · 11.1 KB
/
eqsat.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
--------------------------------------------------------------------------------
name: eqsat
version: 0.1.0
stability: Experimental
build-type: Simple
cabal-version: >= 1.10
category: Compiler
copyright: Copyright 2018 Remy Goldschmidt
author: Remy Goldschmidt
maintainer: [email protected]
license: Apache-2.0
license-file: LICENSE.md
homepage: https://github.com/taktoa/eqsat
bug-reports: https://github.com/taktoa/eqsat/issues
synopsis: A generic Haskell implementation of the
equality saturation algorithm for superoptimization.
description: A generic Haskell implementation of the
equality saturation algorithm for superoptimization.
extra-source-files: README.md
tested-with: GHC == 8.4.3
--------------------------------------------------------------------------------
source-repository head
type: git
tag: master
location: https://github.com/taktoa/eqsat.git
source-repository this
type: git
tag: release-0.1.0
location: https://github.com/taktoa/eqsat.git
--------------------------------------------------------------------------------
library
hs-source-dirs: library
build-depends: base >= 4.8 && < 5.0
, aeson >= 1.0 && < 1.3
, binary >= 0.8 && < 0.9
, bound >= 2.0 && < 2.1
, bytestring >= 0.10 && < 0.11
, cborg >= 0.2 && < 0.3
, cborg-json >= 0.2 && < 0.3
, cereal >= 0.5 && < 0.6
, containers >= 0.5 && < 0.6
, contravariant >= 1.4 && < 1.5
, data-partition >= 0.3 && < 0.4
, deepseq >= 1.4 && < 1.5
, deriving-compat >= 0.4 && < 0.5
, eigen >= 2.1 && < 2.2
, exceptions >= 0.8 && < 0.9
, flow >= 1.0 && < 1.1
, foundation >= 0.0 && < 0.1
, ghc-prim >= 0.5 && < 0.6
, hashable >= 1.2 && < 1.3
, hedgehog >= 0.5 && < 0.6
, impure-containers >= 0.4 && < 0.5
, judy >= 0.4 && < 0.5
, lens >= 4.15 && < 4.17
, loc >= 0.1 && < 0.2
, mtl >= 2.2 && < 2.3
, nondeterminism >= 1.4 && < 1.5
, prettyprinter >= 1.2 && < 1.3
, prettyprinter-ansi-terminal >= 1.1 && < 1.2
, primitive >= 0.6 && < 0.7
, sbv >= 7.5 && < 7.7
, serialise >= 0.2 && < 0.3
, smallcheck >= 1.1 && < 1.2
, streaming >= 0.2 && < 0.3
, system-filepath >= 0.4 && < 0.5
, tasty >= 1.0 && < 1.1
, tasty-hedgehog >= 0.1 && < 0.2
, tasty-smallcheck >= 0.8 && < 0.9
, template-haskell >= 2.9 && < 2.14
, text >= 1.2 && < 1.3
, text-short >= 0.1 && < 0.2
, transformers >= 0.4 && < 0.6
, unexceptionalio >= 0.3 && < 0.4
, unordered-containers >= 0.2 && < 0.3
, vector >= 0.12 && < 0.13
, vector-algorithms >= 0.7 && < 0.8
if impl(ghc >= 8.2)
build-depends: compact >= 0.1 && < 0.2
exposed-modules: EqSat
, EqSat.Term
, EqSat.TypedTerm
, EqSat.Equation
, EqSat.Variable
, EqSat.Domain
, EqSat.TypeSystem
, EqSat.IsExpression
, EqSat.Normalization
, EqSat.Substitution
, EqSat.MSCG
, EqSat.MSCG.Class
, EqSat.TermIndex
, EqSat.TermIndex.Class
, EqSat.TermIndex.DiscriminationNet
, EqSat.TermIndex.SubstitutionTree
, EqSat.Errors.CheckEquationError
, EqSat.Internal.Compact
, EqSat.Internal.MStack
, EqSat.Internal.MHashSet
, EqSat.Internal.MHashMap
, EqSat.Internal.MBitmap
, EqSat.Internal.MGraph
, EqSat.Internal.BipartiteMatching
, EqSat.Internal.Matrix
, EqSat.Internal.PrettyPrinter
, EqSat.Internal.Refined
, EqSat.Internal.SBV
default-language: Haskell2010
default-extensions: MonadFailDesugaring
-- FIXME: add other-extensions list
-- if impl(ghc >= 8.0)
-- ghc-options: -Wcompat -Weverything
-- -fno-warn-unsafe
-- -fno-warn-safe
-- -fno-warn-implicit-prelude
-- -fno-warn-unused-do-bind
-- -fno-warn-missed-specialisations
-- -fno-warn-all-missed-specialisations
-- -g
-- else
-- ghc-options: -Wall -g
--------------------------------------------------------------------------------
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
other-modules: EqSat.Tests
, EqSat.Tests.Unit
, EqSat.Tests.Property
, EqSat.Tests.Integration
, EqSat.Tests.Gen.Misc
, EqSat.Internal.MBitmap.Gen
, EqSat.Internal.MGraph.Gen
build-depends: eqsat
, base >= 4.8 && < 5.0
, aeson >= 1.0 && < 1.3
, binary >= 0.8 && < 0.9
, bound >= 2.0 && < 2.1
, bytestring >= 0.10 && < 0.11
, cborg >= 0.2 && < 0.3
, cborg-json >= 0.2 && < 0.3
, cereal >= 0.5 && < 0.6
, containers >= 0.5 && < 0.6
, contravariant >= 1.4 && < 1.5
, data-partition >= 0.3 && < 0.4
, deepseq >= 1.4 && < 1.5
, deriving-compat >= 0.4 && < 0.5
, eigen >= 2.1 && < 2.2
, exceptions >= 0.8 && < 0.9
, flow >= 1.0 && < 1.1
, foundation >= 0.0 && < 0.1
, ghc-prim >= 0.5 && < 0.6
, hashable >= 1.2 && < 1.3
, hedgehog >= 0.5 && < 0.6
, impure-containers >= 0.4 && < 0.5
, judy >= 0.4 && < 0.5
, lens >= 4.15 && < 4.17
, loc >= 0.1 && < 0.2
, mtl >= 2.2 && < 2.3
, nondeterminism >= 1.4 && < 1.5
, prettyprinter >= 1.2 && < 1.3
, prettyprinter-ansi-terminal >= 1.1 && < 1.2
, primitive >= 0.6 && < 0.7
, sbv >= 7.5 && < 7.7
, serialise >= 0.2 && < 0.3
, smallcheck >= 1.1 && < 1.2
, streaming >= 0.2 && < 0.3
, system-filepath >= 0.4 && < 0.5
, tasty >= 1.0 && < 1.1
, tasty-hedgehog >= 0.1 && < 0.2
, tasty-smallcheck >= 0.8 && < 0.9
, template-haskell >= 2.9 && < 2.14
, text >= 1.2 && < 1.3
, text-short >= 0.1 && < 0.2
, transformers >= 0.4 && < 0.6
, unexceptionalio >= 0.3 && < 0.4
, unordered-containers >= 0.2 && < 0.3
, vector >= 0.12 && < 0.13
, vector-algorithms >= 0.7 && < 0.8
default-language: Haskell2010
default-extensions: MonadFailDesugaring
-- FIXME: add other-extensions list
-- if impl(ghc >= 8.0)
-- ghc-options: -Wcompat -Weverything
-- -fno-warn-unsafe
-- -fno-warn-safe
-- -fno-warn-implicit-prelude
-- -fno-warn-unused-do-bind
-- -fno-warn-missed-specialisations
-- -fno-warn-all-missed-specialisations
-- -g -threaded
-- else
-- ghc-options: -Wall
-- -g -threaded
--------------------------------------------------------------------------------