Skip to content

Commit 257c048

Browse files
authored
Update bifurcation_diagram_computation.md
Simplify ContinuationPar. The default options work fine.
1 parent 9fb2316 commit 257c048

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

docs/src/tutorials/bifurcation_diagram_computation.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,9 @@ Let us consider the `BifurcationProblem` from the last section. If we wish to co
5555

5656
```@example Bif1
5757
p_span = (-4.0, 6.0)
58-
opt_newton = NewtonPar(tol = 1e-9, max_iterations = 20)
59-
opts_br = ContinuationPar(dsmin = 0.001, dsmax = 0.05, ds = 0.01,
60-
max_steps = 100, nev = 2, newton_options = opt_newton,
61-
p_min = p_span[1], p_max = p_span[2],
62-
detect_bifurcation = 3, n_inversion = 4, tol_bisection_eigenvalue = 1e-8,
63-
dsmin_bisection = 1e-9);
58+
opts_br = ContinuationPar(nev = 2,
59+
p_min = p_span[1],
60+
p_max = p_span[2])
6461
```
6562

6663
Here, `p_span` sets the interval over which we wish to compute the diagram.

0 commit comments

Comments
 (0)