-
Notifications
You must be signed in to change notification settings - Fork 0
/
extrapolate.cabal
141 lines (132 loc) · 4.96 KB
/
extrapolate.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
name: extrapolate
version: 0.4.7
synopsis: generalize counter-examples of test properties
description:
Extrapolate is a tool able to provide generalized counter-examples of test
properties where irrelevant sub-expressions are replaces with variables.
.
For the incorrect property @\\xs -> nub xs == (xs::[Int])@:
.
* @[0,0]@ is a counter-example;
.
* @x:x:_@ is a generalized counter-example.
homepage: https://github.com/rudymatela/extrapolate#readme
license: BSD3
license-file: LICENSE
author: Rudy Matela
maintainer: Rudy Matela <rudy@matela.com.br>
category: Testing
build-type: Simple
cabal-version: 1.18
extra-doc-files: README.md
, TODO.md
, doc/extrapolate.svg
extra-source-files: .gitignore
, .github/workflows/build.yml
, Makefile
, bench/versions
, bench/diff.hs
, bench/eq.hs
, bench/false.hs
, bench/lazy-sc/*.hs
, bench/lazy-sc/Makefile
, bench/lazy-sc/revision.txt
, bench/ord.hs
, bench/runtime/oubli/bench/*.runtime
, bench/runtime/oubli/eg/*.runtime
, bench/runtime/zero/bench/*.runtime
, bench/runtime/zero/eg/*.runtime
, bench/runtime/zero/versions
, bench/smartcheck/*.txt
, bench/smartcheck/Makefile
, bench/smartcheck/bin/count-cons
, bench/smartcheck/bin/ncons-overflow
, bench/smartcheck/bin/nvars-overflow
, bench/smartcheck/bin/sort-stats
, bench/smartcheck/div0-main.hs
, bench/smartcheck/list.hs
, bench/smartcheck/overflow-main.hs
, bench/smartcheck/parser-main.hs
, bench/smartcheck/sorting.hs
, bench/smartcheck/word-refinements.hs
, bench/true.hs
, eg/*.hs
, eg/xmonad/Makefile
, eg/xmonad/extrapolate.hs
, eg/xmonad/revision.txt
, eg/xmonad/xmonad.cabal
, mk/All.hs
, mk/Toplibs.hs
, mk/depend.mk
, mk/ghcdeps
, mk/haddock-i
, mk/haskell.mk
, mk/install-on
, stack.yaml
, test/model/bench/*.out
, test/model/eg/*.out
, 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/extrapolate
source-repository this
type: git
location: https://github.com/rudymatela/extrapolate
tag: v0.4.7
library
exposed-modules: Test.Extrapolate
, Test.Extrapolate.Core
, Test.Extrapolate.Expr
, Test.Extrapolate.Generalizable
, Test.Extrapolate.Generalizable.Derive
, Test.Extrapolate.Generalization
, Test.Extrapolate.ConditionalGeneralization
, Test.Extrapolate.Speculation
, Test.Extrapolate.Testable
, Test.Extrapolate.IO
, Test.Extrapolate.TypeBinding
, Test.Extrapolate.Utils
other-extensions: TemplateHaskell, CPP
build-depends: base >= 4 && < 5
, leancheck >= 1.0.0
, template-haskell
, speculate >= 0.4.6
, express >= 1.0.4
hs-source-dirs: src
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: extrapolate.hs
other-modules: Test
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate, extrapolate
default-language: Haskell2010
test-suite derive
type: exitcode-stdio-1.0
main-is: derive.hs
other-modules: Test
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate, extrapolate
default-language: Haskell2010
test-suite utils
type: exitcode-stdio-1.0
main-is: utils.hs
other-modules: Test
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate, extrapolate
default-language: Haskell2010
test-suite step-by-step
type: exitcode-stdio-1.0
main-is: step-by-step.hs
other-modules: Test
hs-source-dirs: test
build-depends: base >= 4 && < 5, leancheck, express, speculate, extrapolate
default-language: Haskell2010