- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Muller's method #568
Add Muller's method #568
Conversation
Add the algorithm into the other test sets: https://github.com/SciML/NonlinearSolve.jl/blob/master/lib/BracketingNonlinearSolve/test/rootfind_tests.jl#L10-L79 |
Just implemented this now. To do this, I needed to provide the solution the fields |
Add `left` and `right` fields to solution
This algorithm isn't bounds refinement, so that makes sense. |
I've implemented a feature that allows the user to specify the The way this is implemented is at the algorithm level, where there is now an optional Muller(; middle = nothing) |
Checklist
contributor guidelines, in particular the SciML Style Guide and
COLPRAC.
Additional context
This implements the algorithm discussed in #403.
An older pull request was opened in the since deprecated
SimpleNonlinearSolve.jl
package (see SciML/SimpleNonlinearSolve.jl#139). This implementation uses the suggestions made in that pull request and implements theMuller
algorithm as anIntervalNonlinearProblem
under theBracketingNonlinearSolve.jl
sub-library.Moving forward, I think we need to
muller_tests.jl
).left
andright
) specified guesses.