@@ -12,8 +12,8 @@ api_dir = joinpath(@__DIR__, "src", "api")
12
12
api_files = map (x -> joinpath (" api" , x), readdir (api_dir))
13
13
tutorial_files = readdir (tutorial_dir)
14
14
md_tutorial_files = [split (file, " ." )[1 ] * " .md" for file in tutorial_files]
15
- benchmark_files = readdir (benchmarks_dir)
16
- md_benchmark_files = [split (file, " ." )[1 ] * " .md" for file in benchmark_files]
15
+ benchmark_files = [ joinpath ( " benchmarks " , e) for e in readdir (benchmarks_dir)]
16
+ # md_benchmark_files = [split(file, ".")[1] * ".md" for file in benchmark_files]
17
17
18
18
include_tutorial = true
19
19
@@ -25,20 +25,14 @@ if include_tutorial
25
25
end
26
26
27
27
makedocs (;
28
- modules= [DecisionFocusedLearningBenchmarks, DecisionFocusedLearningBenchmarks . Warcraft ],
28
+ modules= [DecisionFocusedLearningBenchmarks],
29
29
authors= " Members of JuliaDecisionFocusedLearning" ,
30
30
sitename= " DecisionFocusedLearningBenchmarks.jl" ,
31
- format= Documenter. HTML (),
31
+ format= Documenter. HTML (; size_threshold = typemax (Int) ),
32
32
pages= [
33
33
" Home" => " index.md" ,
34
34
" Tutorials" => include_tutorial ? md_tutorial_files : [],
35
- " Benchmark problems list" => [
36
- " benchmarks/subset_selection.md" ,
37
- " benchmarks/fixed_size_shortest_path.md" ,
38
- " benchmarks/warcraft.md" ,
39
- " benchmarks/portfolio_optimization.md" ,
40
- " benchmarks/vsp.md" ,
41
- ],
35
+ " Benchmark problems list" => benchmark_files,
42
36
" API reference" => api_files,
43
37
],
44
38
)
0 commit comments