-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReinforceLearningIntro.cabal
More file actions
52 lines (50 loc) · 1.83 KB
/
ReinforceLearningIntro.cabal
File metadata and controls
52 lines (50 loc) · 1.83 KB
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
name: ReinforceLearningIntro
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/Xingtao/ReinforceLearningIntro
license: BSD3
license-file: LICENSE
author: Xingtao
maintainer: peng.pxt@gmail.com
copyright: Xingtao
category: Reinforcement Learning
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable RLIntro-test
main-is: TestMain.hs
hs-source-dirs: test src
other-modules: Utils
, Chapter2Bandit
, Chapter3MDP
, Chapter4DP
, Chapter5MC
, Chapter6TD
--, TestChapter2Bandit
, TestChapter3MDP
, TestChapter4DP
, TestChapter5MC
, TestChapter6TD
build-depends: base >= 4.7 && < 5
, random >= 1.1
, time >= 1.8.0.2
, lens >= 4.14
, matplotlib >= 0.5.0
, configurator >= 0.3.0.0
, MonadRandom >= 0.5
, template-haskell >= 2.11.0.0
, random-fu >= 0.2.7.0
, random-extras >= 0.19
, random-source >= 0.3.0.6
, text >= 1.2.2.0
, hmatrix >= 0.18.1.0
, parallel >= 3.2.1.0
, transformers >= 0.5.2.0
, ascii-progress >= 0.3.3.0
, containers >= 0.5.7.1
, split >= 0.2.3.2
, vector >= 0.12.0.0
-- -rtsopts -with-rtsopts=-N
ghc-options: -threaded
default-language: Haskell2010