This repository has been archived by the owner on Jul 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdyna.cabal
175 lines (160 loc) · 6.22 KB
/
dyna.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
Name: dyna
-- XREF:VERSION
Version: 0.4
Cabal-Version: >=1.14
Build-Type: Simple
Stability: alpha
Copyright: Copyright (c) 2007-2013,
Nathaniel W. Filardo, Tim Vieira, wren ng thornton
License: OtherLicense
License-File: LICENSE
Author: Nathaniel W. Filardo, Tim Vieira, wren ng thornton
Maintainer: [email protected]
Homepage: http://www.dyna.org/
Category: Compilers/Interpreters
Synopsis: Interpreter for the Dyna language
Description: A weighted logic programming language for dynamic
programming and natural language processing.
-- Features include memoization, both forward- and
-- backward-chaining, and namespace modularity.
source-repository head
type: git
location: git://github.com/nwf/dyna.git
-- Library
-- Default-Language: Haskell2010
-- Hs-Source-Dirs: src
--
-- ghc-options: -Wall
--
--
-- Exposed-Modules: Dyna.Analysis.ANF,
-- Dyna.Analysis.ANFPretty,
-- Dyna.Analysis.Mode,
-- Dyna.Backend.BackendDefn,
-- Dyna.Main.Exception,
-- Dyna.ParserHS.Parser,
-- Dyna.XXX.Trifecta
--
-- Build-Depends: ansi-wl-pprint >= 0.6,
-- base >=4,
-- bytestring >=0.9,
-- charset >=0.3,
-- containers >=0.4,
-- either >= 3.4,
-- ghc-prim,
-- HUnit >=1.2,
-- mtl >=2.1,
-- lens >=4,
-- -- logict >=0.6,
-- parsers >=0.8.3,
-- reducers >=3.0,
-- semigroups >=0.8,
-- tagged >= 0.4.4,
-- template-haskell,
-- transformers >= 0.3,
-- trifecta >= 1.5.1.3,
-- unordered-containers>=0.2,
-- utf8-string >=0.3,
-- wl-pprint-extras >=3.0,
-- wl-pprint-terminfo >=3.0
-- Executable drepl
-- Default-Language: Haskell2010
-- Hs-Source-Dirs: src
--
-- ghc-options: -Wall
-- -main-is Dyna.REPL
--
-- Build-Depends: ansi-wl-pprint >= 0.6,
-- base >=4,
-- bytestring >=0.9,
-- charset >=0.3,
-- containers >=0.4,
-- either >= 3.4,
-- haskeline >=0.6,
-- mtl >=2.1,
-- lens >=4,
-- parsers >=0.8.3,
-- process >=1.1,
-- reducers >=3.0,
-- semigroups >=0.8,
-- tagged >= 0.4.4,
-- transformers >= 0.3,
-- trifecta >= 1.5.1.3,
-- unordered-containers>=0.2,
-- utf8-string >=0.3,
-- wl-pprint-extras >=3.0
--
-- Main-Is: Dyna/REPL.hs
Executable dyna
Default-Language: Haskell2010
Hs-Source-Dirs: src
ghc-options: -Wall
-main-is Dyna.Main.Driver
if (impl(ghc < 7.7))
cpp-options: -DDYNA_GHC_PRE_77
Build-Depends: ansi-wl-pprint >= 0.6,
base >=4 && <6,
bytestring >=0.9,
charset >=0.3,
containers >=0.4,
either >= 3.4,
ghc-prim,
HUnit >=1.2,
mtl >=2.1,
lens >=4,
-- logict >=0.6,
parsers >=0.8.3,
prelude-extras >=0.3,
process >=1.1,
reducers >=3.0,
semigroups >=0.8,
tagged >= 0.4.4,
transformers >= 0.3,
trifecta >= 1.5.1.3,
unordered-containers>=0.2,
utf8-string >=0.3,
wl-pprint-extras >=3.0,
wl-pprint-terminfo >=3.0
Main-Is: Dyna/Main/Driver.hs
Test-suite dyna-selftests
type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: src
ghc-options: -Wall
-main-is Dyna.Main.TestsDriver
if (impl(ghc < 7.7))
cpp-options: -DDYNA_GHC_PRE_77
Build-Depends: ansi-wl-pprint >= 0.6,
base >=4 && <6,
bytestring >=0.9,
charset >=0.3,
containers >=0.4,
directory >= 1.0,
either >= 3.4,
ghc-prim,
HUnit >=1.2,
mtl >=2.1,
lens >=4,
-- logict >=0.6,
parsers >=0.8.3,
prelude-extras >=0.3,
process >=1.1,
QuickCheck >= 2.5,
reducers >=3.0,
semigroups >=0.8,
smallcheck >= 1.0,
tagged >= 0.4.4,
template-haskell,
test-framework >=0.6,
test-framework-golden >= 1.1,
test-framework-hunit >=0.2,
test-framework-program >= 1.1,
test-framework-quickcheck2 >=0.3,
test-framework-th >=0.2,
transformers >= 0.3,
trifecta >= 1.5.1.3,
unordered-containers>=0.2,
utf8-string >=0.3,
wl-pprint-extras >=3.0,
wl-pprint-terminfo >=3.0
Main-Is: Dyna/Main/TestsDriver.hs