-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtpdb.cabal
168 lines (141 loc) · 4.37 KB
/
tpdb.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
Cabal-Version: 3.0
Name: tpdb
Version: 2.7.2
Author: Alexander Bau, Johannes Waldmann
Maintainer: Johannes Waldmann
Category: Logic
Synopsis: Data Type for Rewriting Systems
Description:
The package defines data types and parsers for rewriting systems
and termination proofs,
as used in the Termination Competitions.
For syntax and semantics specification,
see <http://www.termination-portal.org/wiki/TPDB>
License: GPL-3.0-only
Build-Type: Simple
Homepage: https://github.com/jwaldmann/haskell-tpdb
tested-with: GHC == 9.6.2
Extra-Source-Files:
test/*.xml, test/*.trs , test/*.srs, test/*.cpf
Source-Repository head
Type: git
Location: git://github.com/jwaldmann/haskell-tpdb.git
Library
Build-Depends: base==4.*, prettyprinter, text, mtl,
xml-hamlet, xml-conduit, data-default,
parsec, time, containers, filepath, hashable, bytestring, exceptions
Hs-Source-Dirs: src
default-language: Haskell2010
Exposed-Modules:
TPDB.Data, TPDB.Data.Identifier,
TPDB.Data.Term, TPDB.Data.Term.Plain, TPDB.Data.Term.Cached,
TPDB.Data.Rule, TPDB.Data.Attributes, TPDB.Data.Xml,
-- TPDB.Compress,
TPDB.Convert, TPDB.Input, TPDB.Input.File, TPDB.Input.Memory,
TPDB.Mirror,
TPDB.DP, TPDB.DP.Graph, TPDB.DP.Transform, TPDB.DP.Unify, TPDB.DP.Usable, TPDB.DP.TCap,
TPDB.Pretty, TPDB.Plain.Write, TPDB.Plain.Read,
TPDB.XTC, TPDB.XTC.Read, TPDB.XTC.Write, TPDB.Xml,
TPDB.CPF.Proof.Write, TPDB.CPF.Proof.Read,
TPDB.CPF.Proof.Xml,
TPDB.CPF.Proof.Type, TPDB.CPF.Proof.Util
Executable plain2xtc
build-depends: base==4.*, tpdb, bytestring
main-is: plain2xtc.hs
default-language: Haskell2010
Executable srs2trs
build-depends: base==4.*, tpdb, bytestring
main-is: srs2trs.hs
default-language: Haskell2010
Executable xtc2srs
build-depends: base==4.*, tpdb, bytestring
main-is: xtc2srs.hs
default-language: Haskell2010
-- Executable Compressor
-- Main-is: Compressor.hs
-- Build-depends: base==4.*, containers >= 0.5, directory, wl-pprint-text, hxt, parsec, hashable
Test-Suite XML
Build-Depends: base==4.*, tpdb
Type: exitcode-stdio-1.0
main-is: read_print_xml.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite XML_relative
Build-Depends: base==4.*, tpdb
Type: exitcode-stdio-1.0
main-is: read_print_xml_relative.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite TRS
Build-Depends: base==4.*, tpdb, text
Type: exitcode-stdio-1.0
main-is: read_print_trs.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite TRS_02
Build-Depends: base==4.*, tpdb, text
Type: exitcode-stdio-1.0
main-is: read_print_trs_2.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite SRS
Build-Depends: base==4.*, tpdb, text
Type: exitcode-stdio-1.0
main-is: read_print_srs.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite Speed
Buildable: False
Build-Depends: base==4.*, tpdb, text, pretty
Type: exitcode-stdio-1.0
main-is: speed.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite Attributes
Build-Depends: base==4.*, tpdb, text, pretty
Type: exitcode-stdio-1.0
main-is: attributes.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite XML-Theory
Build-Depends: base==4.*, tpdb
Type: exitcode-stdio-1.0
main-is: read_print_xml_theory.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite CPF-AC
Build-Depends: base==4.*, tpdb
Type: exitcode-stdio-1.0
main-is: read_cpf.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite Parse-AC
Build-Depends: base==4.*, tpdb
Type: exitcode-stdio-1.0
main-is: parse_ac.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite read-cpf
Build-Depends: base==4.*, tpdb
Type: exitcode-stdio-1.0
main-is: read_cpf.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite read-complex
Build-Depends: base==4.*, tpdb
Type: exitcode-stdio-1.0
main-is: read_complex.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite read-large
Build-Depends: base==4.*, tpdb
Type: exitcode-stdio-1.0
main-is: read_large.hs
hs-source-dirs: test
default-language: Haskell2010
Test-Suite dp-performance
Build-Depends: base==4.*, tpdb, text
Type: exitcode-stdio-1.0
main-is: dp-performance.hs
hs-source-dirs: test
default-language: Haskell2010