Skip to content

Commit

Permalink
try to find why OPL does not converge on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rveltz committed Jul 9, 2024
1 parent 2297042 commit 28ea232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/tutorials/ode/OPL.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ nothing #hide
We first compute the branch of equilibria

```@example TUTOPL
opts_br = ContinuationPar(p_min = -1., p_max = 8., ds = 0.001, dsmax = 0.06, n_inversion = 8, nev = 6)
opts_br = ContinuationPar(p_min = -1., p_max = 8., ds = 0.001, dsmax = 0.06, n_inversion = 6, nev = 6)
br = continuation(prob, PALC(), opts_br; normC = norminf)
plot(br, plotfold=true)
Expand All @@ -64,7 +64,7 @@ scene = plot(br, br2)
```@example TUTOPL
sn_br = continuation(br, 1, (@lens _.b), ContinuationPar(opts_br, detect_bifurcation = 1, max_steps = 80) ;
detect_codim2_bifurcation = 2,
start_with_eigen = false,
start_with_eigen = true,
bothside = true,
)
show(sn_br)
Expand Down

0 comments on commit 28ea232

Please sign in to comment.