-
Notifications
You must be signed in to change notification settings - Fork 27
/
open-games-hs.cabal
223 lines (217 loc) · 4.54 KB
/
open-games-hs.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack
name: open-games-hs
version: 0.1.0.0
synopsis: Haskell implementation of open games
category: Math
author: Jules Hedges, André Videla, Philipp Zahn & other contributors
maintainer: philipp.zahn@protonmail
copyright: Jules Hedges, André Videla, Philipp Zahn & other contributors
license: AGPL
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
library
exposed-modules:
OpenGames
OpenGames.Engine.BayesianGames
OpenGames.Engine.Diagnostics
OpenGames.Engine.Engine
OpenGames.Engine.OpenGames
OpenGames.Engine.OpticClass
OpenGames.Engine.TLL
OpenGames.Preprocessor
OpenGames.Preprocessor.BlockSyntax
OpenGames.Preprocessor.Codegen
OpenGames.Preprocessor.CompileBlock
OpenGames.Preprocessor.CompileSyntax
OpenGames.Preprocessor.Parser
OpenGames.Preprocessor.RuntimeAST
Examples.SimultaneousMoves
Examples.Bayesian
Examples.Decision
Examples.SequentialMoves
Examples.Auctions.AuctionSupportFunctions
Examples.Auctions.ChooseReservePrice
Examples.Auctions.DutchAuction
Examples.Auctions.SequentialAuction
Examples.Auctions.SimultaneousBidAuction
Examples.Markov.RepeatedPD
Examples.Markov.RepeatedPDNonState
Examples.Markov.TwoStageMarkov
Examples.Markov.TestSimpleMonteCarlo
Examples.Markov.TestSimpleMonteCarlo.Continuation
Graphics
other-modules:
Data.Utils
Examples.Markov.NStageMarkov
Examples.Staking.AndGateMarkov
Examples.Staking.AndGateMarkovMC
Examples.Token.Concrete
OpenGames.Engine.AtomicGames
OpenGames.Engine.BayesianGamesNonState
OpenGames.Engine.IOGames
OpenGames.Engine.Nat
OpenGames.Engine.Vec
Paths_open_games_hs
hs-source-dirs:
src
build-depends:
QuickCheck
, act
, ad
, base >=4.7 && <5
, comonad
, criterion
, extra
, fgl
, ghc
, graphviz
, hashable
, hashmap
, haskeline
, lens
, monad-bayes
, mtl
, mwc-random
, parsec
, poly
, probability
, profunctors
, random
, template-haskell
, transformers
, typed-process
, vector
default-language: Haskell2010
executable act-exec
main-is: Main.hs
other-modules:
Act
Act.Execution
Act.Prelude
Act.TH
Act.TH.Extractor
Act.TH.State
Act.Utils
EVM.TH
Examples.AmmGenerated
Examples.EVM
Examples.Player
Paths_open_games_hs
hs-source-dirs:
act
ghc-options: -fwarn-unused-imports -Wno-partial-type-signatures
build-depends:
QuickCheck
, act
, ad
, base >=4.7 && <5
, bytestring
, comonad
, containers
, criterion
, data-dword
, extra
, fgl
, file-embed
, ghc
, graphviz
, hashable
, hashmap
, haskeline
, hevm >=0.51.0
, lens
, monad-bayes
, mtl
, mwc-random
, open-games-hs
, optics-core
, optics-extra
, parsec
, poly
, probability
, profunctors
, random
, rosezipper
, template-haskell
, text
, transformers
, typed-process
, validation
, vector
default-language: Haskell2010
executable graphics
main-is: Main.hs
other-modules:
Paths_open_games_hs
hs-source-dirs:
graphics
build-depends:
QuickCheck
, act
, ad
, base >=4.7 && <5
, comonad
, criterion
, extra
, fgl
, ghc
, graphviz
, hashable
, hashmap
, haskeline
, lens
, monad-bayes
, mtl
, mwc-random
, open-games-hs
, parsec
, poly
, probability
, profunctors
, random
, template-haskell
, transformers
, typed-process
, vector
default-language: Haskell2010
executable open-games-exe
main-is: Main.hs
other-modules:
Paths_open_games_hs
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck
, act
, ad
, base >=4.7 && <5
, comonad
, criterion
, extra
, fgl
, ghc
, graphviz
, hashable
, hashmap
, haskeline
, lens
, monad-bayes
, mtl
, mwc-random
, open-games-hs
, parsec
, poly
, probability
, profunctors
, random
, template-haskell
, transformers
, typed-process
, vector
default-language: Haskell2010