Skip to content

Commit 6e2d6fd

Browse files
committed
foo
1 parent 73d1a9a commit 6e2d6fd

17 files changed

+125
-23
lines changed

docs/make.jl

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,18 @@ makedocs(
1515
format = Documenter.HTML(prettyurls = false),
1616
pages = [
1717
"Introduction" => "index.md",
18-
"Tutorials" => ["basic-example.md", "goddard.md"],
19-
"API" => ["api.md", "api-ctbase.md", "api-ctflows.md", "api-ctdirect.md"],
18+
"Tutorials" => ["tutorial-basic-example.md",
19+
"tutorial-goddard.md",
20+
"tutorial-model.md",
21+
"tutorial-solvers.md",
22+
"tutorial-init.md",
23+
"tutorial-plot.md",
24+
"tutorial-iss.md",
25+
"tutorial-ctrepl.md"],
26+
"API" => ["api.md",
27+
"api-ctbase.md",
28+
"api-ctflows.md",
29+
"api-ctdirect.md"],
2030
]
2131
)
2232

docs/src/api.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ Order = [:module, :constant, :type, :function, :macro]
99
Private = false
1010
```
1111

12+
## Available methods
13+
14+
```@example
15+
using OptimalControl
16+
Methods()
17+
```
18+
1219
## Documentation
1320

1421
```@autodocs

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The `OptimalControl.jl` package aims to provide tools to solve optimal control p
88
It is part of the [control-toolbox ecosystem](https://github.com/control-toolbox):
99

1010
```@raw html
11-
<img src="./assets/diagram.png" style="display: block; margin: 0 auto 20px auto;" width="400px">
11+
<img src="./assets/diagram.png" style="display: block; margin: 0 auto 20px auto;" width="320px">
1212
```
1313

1414
!!! note "Install and documentation"
File renamed without changes.

docs/src/tutorial-ctrepl.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# ct repl
2+
3+
See [`ctrepl`](@ref) method.
File renamed without changes.

docs/src/tutorial-init.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Initialisation
2+
3+
```@meta
4+
CurrentModule = OptimalControl
5+
```
6+
7+
See [`solve`](@ref) method.

docs/src/tutorial-iss.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Indirect simple shooting
2+
3+
In construction.

docs/src/tutorial-model.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Modelisation
2+
3+
See [`OptimalControlModel`](@ref) type.

docs/src/tutorial-plot.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Plot solution
2+
3+
See [`plot`](@ref) method.

0 commit comments

Comments
 (0)