-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoq-graph2tac.opam
51 lines (49 loc) · 1.74 KB
/
coq-graph2tac.opam
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
opam-version: "2.0"
synopsis: "Graph neural network that predicts tactics for Tactician"
description: ""
maintainer: ["Lasse Blaauwbroek <[email protected]>"]
authors: [
"Lasse Blaauwbroek"
"Mirek Olsak"
"Vasily Pestun"
"Jelle Piepenbrock"
"Jason Rute"
"Fidel I. Schaposnik Massolo"
]
homepage: "https://coq-tactician.github.io"
bug-reports:
"https://github.com/pestun/graph2tac/issues"
build: [
[ "tar" "xzf" "model.tar.gz" "--one-top-level" "--strip-components" "1" ]
]
install: [
[ "mkdir" "--parents" "%{share}%/%{name}%/" ]
[ "cp" "-r" "model/" "%{share}%/%{name}%/" ]
[ "cp" "Graph2TacConfig.v" "%{lib}%/coq/user-contrib/Tactician/Graph2TacConfig.v" ]
# We have to make sure that our injection flags get loaded after the injection flags of coq-tactician-reinforce.
# We do this by using a name that is guaranteed to sort after coq-tactician-reinforce.
[ "mkdir" "--parents" "%{share}%/coq-tactician/plugins/coq-tactician-reinforce-%{name}%/" ]
[ "cp" "injection-flags" "%{share}%/coq-tactician/plugins/coq-tactician-reinforce-%{name}%/" ]
]
dev-repo: "git+https://github.com/pestun/graph2tac.git"
pin-depends: [
[
"coq-tactician.8.11.dev"
"git+https://github.com/coq-tactician/coq-tactician.git#60636272bb74cd0f136ccd4e66822c83184817fa"
]
[
"coq-tactician-reinforce.8.11.dev"
"git+ssh://[email protected]/coq-tactician/coq-tactician-reinforce.git#3a9d30875a7b397d838b50b8277671da61db1570"
]
]
depends: [
"coq-tactician-reinforce"
"coq-tactician"
]
extra-source "model.tar.gz" {
src: "http://64.71.146.254:8000/SFyud_C5TmEq7AwnK9jaLsfTFMzgBl54cQ0pl2FJB-x9o2Hk24F4jO_W75RqGdOJ/weights/2022-06-13_vasily_run_400_epoch_256.tar.gz"
checksum: "md5=4434c615d3f29bfe8e539d4b772cfdc8"
}
substs: [
"Graph2TacConfig.v"
]