-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Move RobustMultiNewton to NonlinearSolveFirstOrder (#499)
* refactor: Move RobustMultiNewton to NonlinearSolveFirstOrder * refactor: Implicit import NonlinearSolvePolyAlgorithm
- Loading branch information
Showing
6 changed files
with
55 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
""" | ||
RobustMultiNewton( | ||
::Type{T} = Float64; | ||
concrete_jac = nothing, | ||
linsolve = nothing, | ||
autodiff = nothing, vjp_autodiff = nothing, jvp_autodiff = nothing | ||
) | ||
A polyalgorithm focused on robustness. It uses a mixture of Newton methods with different | ||
globalizing techniques (trust region updates, line searches, etc.) in order to find a | ||
method that is able to adequately solve the minimization problem. | ||
Basically, if this algorithm fails, then "most" good ways of solving your problem fail and | ||
you may need to think about reformulating the model (either there is an issue with the model, | ||
or more precision / more stable linear solver choice is required). | ||
### Arguments | ||
- `T`: The eltype of the initial guess. It is only used to check if some of the algorithms | ||
are compatible with the problem type. Defaults to `Float64`. | ||
""" | ||
function RobustMultiNewton( | ||
::Type{T} = Float64; | ||
concrete_jac = nothing, | ||
linsolve = nothing, | ||
autodiff = nothing, vjp_autodiff = nothing, jvp_autodiff = nothing | ||
) where {T} | ||
common_kwargs = (; concrete_jac, linsolve, autodiff, vjp_autodiff, jvp_autodiff) | ||
if T <: Complex # Let's atleast have something here for complex numbers | ||
algs = ( | ||
NewtonRaphson(; common_kwargs...), | ||
) | ||
else | ||
algs = ( | ||
TrustRegion(; common_kwargs...), | ||
TrustRegion(; common_kwargs..., radius_update_scheme = RUS.Bastin), | ||
NewtonRaphson(; common_kwargs...), | ||
NewtonRaphson(; common_kwargs..., linesearch = BackTracking()), | ||
TrustRegion(; common_kwargs..., radius_update_scheme = RUS.NLsolve), | ||
TrustRegion(; common_kwargs..., radius_update_scheme = RUS.Fan) | ||
) | ||
end | ||
return NonlinearSolvePolyAlgorithm(algs) | ||
end |
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