Skip to content

Commit 706111b

Browse files
committed
itp recommended method
1 parent 72998dd commit 706111b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ solver = solve(probN, NewtonRaphson(), abstol = 1e-9)
3232
f(u, p) = u .* u .- 2.0
3333
u0 = (1.0, 2.0) # brackets
3434
probB = IntervalNonlinearProblem(f, u0)
35-
sol = solve(probB, Falsi())
35+
sol = solve(probB, ITP())
3636
```
3737

3838
## v1.0 Breaking Release Highlights!

docs/src/solvers/BracketingSolvers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Solves for ``f(t)=0`` in the problem defined by `prob` using the algorithm
77

88
## Recommended Methods
99

10-
`ITP()` is the recommended method for the scalar interval root-finding problems.
10+
`ITP()` is the recommended method for the scalar interval root-finding problems. It is particularly well-suited for cases where the function is smooth and well-behaved; and achieved superlinear convergence while retaining the optimal worst-case performance of the Bisection method. For more details, consult the detailed solver API docs.
1111
`Falsi()` can have a faster convergence and is discretely differentiable, but is
1212
less stable than `Bisection`.
1313
`Ridder` is a hybrid method that uses the value of function at the midpoint of the interval to perform an exponential interpolation to the root. This gives a fast convergence with a guaranteed convergence of at most twice the number of iterations as the bisection method.

0 commit comments

Comments
 (0)