Skip to content

Commit 46e964a

Browse files
committed
reduce newton step example from 1000 to 10
1 parent 7c1b41a commit 46e964a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/steady_state_functionality/bifurcation_diagrams.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Most of the options required by the `bifurcationdiagram` function are provided t
6666
The previous bifurcation diagram can be computed, with these various options specified, in the following way:
6767
```@example ex1
6868
p_span = (2.0, 20.0)
69-
newton_options = NewtonPar(tol = 1e-9, max_iterations = 1000)
69+
newton_options = NewtonPar(tol = 1e-9, max_iterations = 10)
7070
opts_br = ContinuationPar(; p_min = p_span[1], p_max = p_span[2], ds = 0.005,
7171
dsmin = 0.001, dsmax = 0.01, max_steps = 1000, newton_options)
7272
bif_dia = bifurcationdiagram(bprob, PALC(), 2, opts_br; bothside = true)

0 commit comments

Comments
 (0)