Skip to content

Commit e8c8c3e

Browse files
ordering fix in pages
1 parent 91f9351 commit e8c8c3e

File tree

1 file changed

+11
-21
lines changed

1 file changed

+11
-21
lines changed

docs/pages.jl

+11-21
Original file line numberDiff line numberDiff line change
@@ -33,34 +33,24 @@ for folder in readdir(tutorialsdir)
3333
end
3434
end
3535

36-
#=
3736
# The result is in alphabetical order, change to the wanted order
3837

3938
permute!(pages,
40-
[1, 8, 11, 17, 3, 4, 7, 5, 9, 12, 18, 10, 16, 6, 15, 13, 14, 2]
39+
[1, 7, 8, 10, 6, 5, 3, 2, 9, 4]
4140
)
4241

4342
names = [
44-
"SciMLBenchmarks.jl: Benchmarks for Scientific Machine Learning (SciML) and Equation Solvers",
45-
"Multi-Language Wrapper Benchmarks",
46-
"Non-Stiff Ordinary Differential Equations",
47-
"Stiff Ordinary Differential Equations",
48-
"Biological Differential Equations",
49-
"Differential-Algebraic Equations (DAEs)",
50-
"Method of Lines Partial Differential Equations (PDEs)",
51-
"Dynamical ODEs (Hamiltonian and Second Order)",
52-
"N-Body Problem Benchmarks",
53-
"Non-Stiff Stochastic Differential Equations",
54-
"Stiff Stochastic Differential Equations",
55-
"Non-Stiff Delay Differential Equations",
56-
"Stiff Delay Differential equations",
57-
"Jump Process Equations (Gillespie Benchmarks)",
58-
"Parameter Estimation and Inverse Problem Benchmarks",
59-
"Physics-Informed Neural Network (Neural Network PDE Solver) Cost Function Benchmarks",
60-
"Physics-Informed Neural Network (Neural Network PDE Solver) Optimizer Benchmarks",
61-
"SDE Adaptivity Benchmarks"]
43+
"SciMLTutorials.jl: Tutorials for Scientific Machine Learning (SciML) and Equation Solvers",
44+
"Ordinary Differential Equation (ODE) Examples",
45+
"Special Analyses of ODEs",
46+
"Mixing Julia Types with Differential Equations",
47+
"Inference and Parameter Estimation on ODEs",
48+
"Analyzing Jump Process Equations",
49+
"Advanced ODE Examples",
50+
"Uncertainty Quantification on ODEs",
51+
"Symbolic-Numeric Approaches",
52+
"Workshop Exercises"]
6253

6354
for i in 1:length(pages)
6455
pages[i] = names[i] => pages[i][2]
6556
end
66-
=#

0 commit comments

Comments
 (0)