-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
113 lines (100 loc) · 1.79 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: synthesis
version: '0.0.0'
github: "tycho01/synthesis"
license: MIT
author: "Kiara Grouwstra"
maintainer: "Kiara Grouwstra"
synopsis: typed neural program synthesis
description: code-base for my UvA MSc AI thesis on typed neural program synthesis
category: Machine Learning
extra-source-files:
- CHANGELOG.md
- LICENSE.md
- package.yaml
- README.md
- stack.yaml
ghc-options:
- -Wall
- -rtsopts
- -threaded
- -with-rtsopts=-N
default-extensions:
- LambdaCase
- ScopedTypeVariables
- UnicodeSyntax
- RankNTypes
dependencies:
- base
- haskell-src-exts
- hint
- containers
- unordered-containers
- ghc-lib-parser
- random
- mtl
- hasktorch
- libtorch-ffi
- ghc-typelits-knownnat
- ghc-typelits-extra
- ghc-typelits-natnormalise
- aeson
- yaml
- cassava
- directory
- split
- text
- terminal-progress-bar
- hashable
- hslogger
- bytestring
- prettyprinter
- store
- optparse-applicative
- io-memoize
- GA
library:
dependencies: []
source-dirs: library
executables:
generator:
source-dirs: generator
main: Main.hs
dependencies:
- synthesis
synthesizer:
source-dirs: synthesizer
main: Main.hs
dependencies:
- synthesis
view-dataset:
source-dirs: view-dataset
main: Main.hs
dependencies:
- synthesis
grid-search:
source-dirs: grid-search
main: Main.hs
dependencies:
- synthesis
evolutionary:
source-dirs: evolutionary
main: Main.hs
dependencies:
- synthesis
benchmarks:
synthesis-benchmarks:
source-dirs: benchmark
main: Main.hs
dependencies:
- synthesis
- criterion
tests:
synthesis-test-suite:
source-dirs: test-suite
main: Main.hs
dependencies:
- synthesis
- tasty
- tasty-hspec
- HUnit
- tasty-hunit