Skip to content

Commit 859181f

Browse files
committed
add indirect
1 parent 999cd0e commit 859181f

File tree

7 files changed

+705
-257
lines changed

7 files changed

+705
-257
lines changed

docs/Project.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,20 @@ CTModels = "34c4fa32-2049-4079-8329-de33c2a22e2d"
77
CTParser = "32681960-a1b1-40db-9bff-a1ca817385d1"
88
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
99
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
10+
DifferentiationInterface = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63"
1011
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
1112
DocumenterInterLinks = "d12716ef-a0f6-4df4-a9f1-a5a34e75c656"
1213
DocumenterMermaid = "a078cd44-4d9c-4618-b545-3ab9d77f9177"
1314
ExaModels = "1037b233-b668-4ce9-9b63-f9f681f55dd2"
15+
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
1416
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
1517
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
1618
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
19+
MINPACK = "4854310b-de5a-5eb6-a2a5-c1dee2bd17f9"
1720
MadNLP = "2621e9c9-9eb4-46b1-8089-e8c72242dfb6"
1821
NLPModelsIpopt = "f4238b75-b362-5c4c-b852-0801c9a21d71"
1922
NLPModelsKnitro = "bec4dd0d-7755-52d5-9a02-22f0ffc7efcb"
23+
NonlinearSolve = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
2024
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
2125
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
2226
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb"
@@ -30,16 +34,20 @@ CTModels = "0.6"
3034
CTParser = "0.6"
3135
CommonSolve = "0.2"
3236
DataFrames = "1"
37+
DifferentiationInterface = "0.7"
3338
Documenter = "1"
3439
DocumenterInterLinks = "1"
3540
DocumenterMermaid = "0.2"
3641
ExaModels = "0.9"
42+
ForwardDiff = "0.10, 1"
3743
JLD2 = "0.6"
3844
JSON3 = "1"
3945
LinearAlgebra = "1"
46+
MINPACK = "1"
4047
MadNLP = "0.8"
4148
NLPModelsIpopt = "0.10"
4249
NLPModelsKnitro = "0.9"
50+
NonlinearSolve = "4"
4351
OrdinaryDiffEq = "6"
4452
Plots = "1"
4553
Suppressor = "0.2"

docs/make.jl

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,18 +119,21 @@ cp(
119119

120120
repo_url = "github.com/control-toolbox/OptimalControl.jl"
121121

122+
# if draft is true, then the julia code from .md is not executed # debug
123+
# to disable the draft mode in a specific markdown file, use the following:
124+
#=
125+
```@meta
126+
Draft = false
127+
```
128+
=#
122129
makedocs(;
123-
draft=false, # if draft is true, then the julia code from .md is not executed # debug
124-
# to disable the draft mode in a specific markdown file, use the following:
125-
# ```@meta
126-
# Draft = false
127-
# ```
130+
draft=false,
128131
#warnonly=[:cross_references, :autodocs_block],
129132
sitename="OptimalControl.jl",
130133
format=Documenter.HTML(;
131134
repolink="https://" * repo_url,
132135
prettyurls=false,
133-
size_threshold_ignore=["api-optimalcontrol-user.md"],
136+
size_threshold_ignore=["api-optimalcontrol-user.md", "example-double-integrator-energy.md"],
134137
assets=[
135138
asset("https://control-toolbox.org/assets/css/documentation.css"),
136139
asset("https://control-toolbox.org/assets/js/documentation.js"),

0 commit comments

Comments
 (0)