forked from philipp-zahn/open-games-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopen-games-hs.cabal
153 lines (148 loc) · 3.22 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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- 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:
Engine.AtomicGames
Engine.BayesianGames
Engine.Diagnostics
Engine.Engine
Engine.OpenGames
Engine.OpticClass
Engine.TLL
Preprocessor.AbstractSyntax
Preprocessor.Compile
Preprocessor.Lambda
Preprocessor.Parser
Preprocessor.THSyntax
Preprocessor.TH
Preprocessor.Types
Preprocessor.Preprocessor
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
Engine.BayesianGamesNonState
Engine.IOGames
Examples.Markov.NStageMarkov
Examples.Staking.AndGateMarkov
Examples.Staking.AndGateMarkovMC
Paths_open_games_hs
hs-source-dirs:
src
build-depends:
QuickCheck
, ad
, base >=4.7 && <5
, comonad
, criterion
, extra
, fgl
, graphviz
, hashable
, hashmap
, haskeline
, lens
, mtl
, mwc-random
, parsec
, poly
, probability
, profunctors
, random
, template-haskell
, transformers
, typed-process
, vector
default-language: Haskell2010
executable graphics
main-is: Main.hs
other-modules:
Paths_open_games_hs
hs-source-dirs:
graphics
build-depends:
QuickCheck
, ad
, base >=4.7 && <5
, comonad
, criterion
, extra
, fgl
, graphviz
, hashable
, hashmap
, haskeline
, lens
, 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
, ad
, base >=4.7 && <5
, comonad
, criterion
, extra
, fgl
, graphviz
, hashable
, hashmap
, haskeline
, lens
, mtl
, mwc-random
, open-games-hs
, parsec
, poly
, probability
, profunctors
, random
, template-haskell
, transformers
, typed-process
, vector
default-language: Haskell2010