File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed
Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 425425function generate_documentation_problems(;
426426 draft:: Union{Bool,Nothing} = nothing , exclude_from_draft:: Vector{Symbol} = Symbol[]
427427)
428- problems_list = filter(p -> p != :steering, problems() )
428+ problems_list = problems()
429429 problems_pages = map(p -> joinpath(" problems" , string(p) * " .md" ), problems_list)
430430
431431 # reset problems directory
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ julia> model = OptimalControlProblems.steering(JuMPBackend(); N=200)
2626# References
2727
2828- Problem formulation available at: https://github.com/MadNLP/COPSBenchmark.jl/blob/main/src/steering.jl
29-
29+ """
3030function OptimalControlProblems. steering(
3131 :: JuMPBackend ,
3232 args... ;
@@ -121,4 +121,3 @@ function OptimalControlProblems.steering(
121121
122122 return model
123123end
124- """
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ julia> using OptimalControlProblems
2222
2323julia> docp = OptimalControlProblems.steering(OptimalControlBackend(); N=500);
2424```
25-
25+ """
2626function OptimalControlProblems. steering(
2727 :: OptimalControlBackend ,
2828 description:: Symbol... ;
@@ -99,5 +99,4 @@ function OptimalControlProblems.steering(
9999 )
100100
101101 return docp
102- end
103- """
102+ end
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ julia> using OptimalControlProblems
2222
2323julia> docp = OptimalControlProblems.steering(OptimalControlBackend(); N=500);
2424```
25-
25+ """
2626function OptimalControlProblems. steering_s(
2727 :: OptimalControlBackend ,
2828 description:: Symbol... ;
@@ -99,5 +99,4 @@ function OptimalControlProblems.steering_s(
9999 )
100100
101101 return docp
102- end
103- """
102+ end
You can’t perform that action at this time.
0 commit comments