-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
149 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# BracketingNonlinearSolve.jl | ||
|
||
These methods can be used independently of the rest of NonlinearSolve.jl | ||
|
||
```@index | ||
Pages = ["bracketingnonlinearsolve.md"] | ||
``` | ||
|
||
## Interval Methods | ||
|
||
These methods are suited for interval (scalar) root-finding problems, | ||
i.e. [`IntervalNonlinearProblem`](@ref). | ||
|
||
```@docs | ||
ITP | ||
Alefeld | ||
Bisection | ||
Falsi | ||
Ridder | ||
Brent | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# BracketingNonlinearSolve.jl | ||
|
||
Fast implementations of interval root finding algorithms in Julia that satisfy the SciML | ||
common interface. BracketingNonlinearSolve.jl focuses on low-dependency implementations of | ||
very fast methods for very small and simple problems. For the full set of solvers, see | ||
[NonlinearSolve.jl](https://github.com/SciML/NonlinearSolve.jl), of which | ||
BracketingNonlinearSolve.jl is just one solver set. | ||
|
||
For information on using the package, | ||
[see the stable documentation](https://docs.sciml.ai/NonlinearSolve/stable/). Use the | ||
[in-development documentation](https://docs.sciml.ai/NonlinearSolve/dev/) for the version of | ||
the documentation which contains the unreleased features. | ||
|
||
## High Level Examples | ||
|
||
```julia | ||
using BracketingNonlinearSolve | ||
|
||
f(u, p) = u .* u .- 2.0 | ||
u0 = (1.0, 2.0) # brackets | ||
probB = IntervalNonlinearProblem(f, u0) | ||
sol = solve(probB, ITP()) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.