forked from jonathan-laurent/AlphaZero.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
43 lines (40 loc) · 1.06 KB
/
make.jl
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
using Documenter
using AlphaZero
const PRETTY_URLS = get(ENV, "CI", nothing) == "true"
makedocs(
sitename = "AlphaZero",
authors="Jonathan Laurent",
format = Documenter.HTML(prettyurls=PRETTY_URLS),
modules = [AlphaZero],
pages = [
"Home" => "index.md",
"Guided Tour" => [
"tutorial/alphazero_intro.md",
"tutorial/package_overview.md",
"tutorial/connect_four.md",
"tutorial/own_game.md"
],
"Reference" => [
"reference/params.md",
"reference/game_interface.md",
"reference/mcts.md",
"reference/network.md",
"reference/networks_library.md",
"reference/player.md",
"reference/memory.md",
"reference/environment.md",
"reference/benchmark.md",
"reference/reports.md",
"reference/experiment.md",
"reference/ui.md",
"reference/scripts.md"
],
"Contributing" => [
"contributing/guide.md"
]
],
repo="https://github.com/jonathan-laurent/AlphaZero.jl/blob/{commit}{path}#L{line}"
)
deploydocs(;
repo="github.com/jonathan-laurent/AlphaZero.jl",
)