-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeculate.cabal
170 lines (156 loc) · 5.68 KB
/
speculate.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
name: speculate
version: 0.4.21
synopsis: discovery of properties about Haskell functions
description:
Speculate automatically discovers laws about Haskell functions.
Give Speculate a bunch of Haskell functions and it will discover laws like:
.
* equations, such as @ id x == x @;
.
* inequalities, such as @ 0 <= x * x @;
.
* conditional equations, such as @ x \<= 0 ==\> x + abs x == 0 @.
homepage: https://github.com/rudymatela/speculate#readme
license: BSD3
license-file: LICENSE
author: Rudy Matela, Colin Runciman
maintainer: Rudy Matela <[email protected]>
category: Testing
build-type: Simple
cabal-version: 1.18
extra-doc-files: README.md
, changelog.md
, TODO.md
, doc/speculate.svg
extra-source-files: .gitignore
, .github/workflows/build.yml
, Makefile
, bench/*.hs
, bench/*.txt
, bench/arith-c
, bench/bool-c
, bench/list-c
, bench/minus-c
, bench/arith-t
, bench/list-t
, bench/versions
, bench/runtime/zero/bench/*.runtime
, bench/runtime/zero/eg/*.runtime
, bench/runtime/zero/versions
, bench/runtime/lapmatrud/bench/*.runtime
, bench/runtime/lapmatrud/eg/*.runtime
, bench/runtime/lapmatrud/versions
, bin/*.sh
, eg/*.hs
, eg/*.txt
, mk/depend.mk
, mk/ghcdeps
, mk/haddock-i
, mk/haskell.mk
, mk/install-on
, mk/Toplibs.hs
, stack.yaml
, test/sdist
tested-with: GHC==9.8
, GHC==9.6
, GHC==9.4
, GHC==9.2
, GHC==9.0
, GHC==8.10
, GHC==8.6
, GHC==8.2
source-repository head
type: git
location: https://github.com/rudymatela/speculate
source-repository this
type: git
location: https://github.com/rudymatela/speculate
tag: v0.4.21
library
exposed-modules: Test.Speculate
, Test.Speculate.Args
, Test.Speculate.Function.A10
, Test.Speculate.Function.A100
, Test.Speculate.Function.A1000
, Test.Speculate.Report
, Test.Speculate.Engine
, Test.Speculate.Expr
, Test.Speculate.Expr.Core
, Test.Speculate.Expr.Equate
, Test.Speculate.Expr.Ground
, Test.Speculate.Expr.Instance
, Test.Speculate.Pretty
, Test.Speculate.Reason
, Test.Speculate.Reason.Order
, Test.Speculate.SemiReason
, Test.Speculate.CondReason
, Test.Speculate.Sanity
, Test.Speculate.Utils
other-modules: Test.Speculate.Utils.Class
, Test.Speculate.Utils.Colour
, Test.Speculate.Utils.Digraph
, Test.Speculate.Utils.List
, Test.Speculate.Utils.Memoize
, Test.Speculate.Utils.Misc
, Test.Speculate.Utils.Ord
, Test.Speculate.Utils.PrettyPrint
, Test.Speculate.Utils.String
, Test.Speculate.Utils.Tiers
, Test.Speculate.Utils.Timeout
, Test.Speculate.Utils.Tuple
build-depends: base >= 4 && < 5
, leancheck >= 1.0.0
, express >= 1.0.0
, cmdargs
, containers
hs-source-dirs: src
default-language: Haskell2010
test-suite creason
main-is: creason.hs
other-modules: Test, Test.ListableExpr
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate
default-language: Haskell2010
type: exitcode-stdio-1.0
test-suite engine
main-is: engine.hs
other-modules: Test, Test.ListableExpr
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate
default-language: Haskell2010
type: exitcode-stdio-1.0
test-suite eval
main-is: eval.hs
other-modules: Test, Test.ListableExpr
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate
default-language: Haskell2010
type: exitcode-stdio-1.0
test-suite expr
main-is: expr.hs
other-modules: Test, Test.ListableExpr
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate
default-language: Haskell2010
type: exitcode-stdio-1.0
test-suite order
main-is: order.hs
other-modules: Test, Test.ListableExpr
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate
default-language: Haskell2010
type: exitcode-stdio-1.0
test-suite reason
main-is: reason.hs
other-modules: Test, Test.ListableExpr
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate
default-language: Haskell2010
type: exitcode-stdio-1.0
test-suite utils
main-is: utils.hs
other-modules: Test, Test.ListableExpr
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate
default-language: Haskell2010
type: exitcode-stdio-1.0