Skip to content

Commit 53bcaec

Browse files
committed
Increase continuation steps from 8 to 9
1 parent 04b7a5c commit 53bcaec

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

docs/src/tutorial-continuation.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Discrete continuation
22

3-
```@meta
4-
Draft = false
5-
```
6-
73
By using the warm start option, it is easy to implement a basic discrete continuation method, in which a sequence of problems is solved by using each solution as the initial guess for the next problem. This approach typically leads to faster and more reliable convergence than solving each problem with the same initial guess and is particularly useful for problems that require a good initial guess to converge.
84

95
## Continuation on parametric OCP
@@ -176,7 +172,7 @@ function continuation_goddard(Tmax_range; init=nothing, scheme=:midpoint, grid_s
176172
return data, sols
177173
end
178174
179-
data, sols = continuation_goddard(range(Tmax_0, Tmax_f, length=8); init=sol0)
175+
data, sols = continuation_goddard(range(Tmax_0, Tmax_f, length=9); init=sol0)
180176
println(data)
181177
```
182178

0 commit comments

Comments
 (0)