-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.yaml
113 lines (107 loc) · 2.57 KB
/
package.yaml
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
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
extra-source-files:
- README.md
library:
source-dirs: src
exposed-modules:
# - OpenGames.Engine.AtomicGames
- 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
dependencies:
- base >=4.7 && <5
- act
- mtl
- ghc
- transformers
- probability
- ad
- poly
- profunctors
- template-haskell
- parsec
- QuickCheck
- comonad
- haskeline
- hashmap
- hashable
- extra
- fgl
- graphviz
- lens
- typed-process
- mwc-random
- random
- vector
- monad-bayes
- criterion
executables:
open-games-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- open-games-hs
act-exec:
main: Main.hs
source-dirs: act
ghc-options:
- -fwarn-unused-imports
- -Wno-partial-type-signatures
dependencies:
- act
- data-dword
- open-games-hs
- optics-core
- optics-extra
- rosezipper
- file-embed
- bytestring
- validation
- hevm >= 0.51.0
- containers
- text
graphics:
main: Main.hs
source-dirs: graphics
dependencies:
- open-games-hs
- graphviz
- template-haskell
- criterion