Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Tutorials"
uuid = "cb10daa6-a5e5-4c25-a171-ae181b8ea3c9"
authors = ["Olivier Cots <olivier.cots@toulouse-inp.fr>"]
version = "0.2.0"
version = "0.3.0"

[compat]
julia = "1.10"
1 change: 1 addition & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb"
Tutorials = "cb10daa6-a5e5-4c25-a171-ae181b8ea3c9"

[compat]
BenchmarkTools = "1"
Expand Down
2 changes: 1 addition & 1 deletion docs/extras/disc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ for adnlp_backend in backends
docp = @btimed direct_transcription(
$ocp; disc_method=:euler, grid_size=1000, adnlp_backend=($adnlp_backend)
)
nlp = model(docp)
nlp = nlp_model(docp)
prepa_time = bt.time

# Get the number of non-zero elements
Expand Down
7 changes: 4 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ cp(

repo_url = "github.com/control-toolbox/Tutorials.jl"

makedocs(;
draft=false, # if draft is true, then the julia code from .md is not executed
# to disable the draft mode in a specific markdown file, use the following:
# if draft is true, then the julia code from .md is not executed # debug
# to disable the draft mode in a specific markdown file, use the following:
#=
```@meta
Draft = false
```
=#
makedocs(;
draft=false,
warnonly=[:cross_references, :autodocs_block],
sitename="Tutorials",
format=Documenter.HTML(;
Expand Down
Loading
Loading