You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using NonlinearSolve, SciMLNLSolve
f(u, p) = u .* u .- p
u0 = [1.0, 1.0]
p =2.0
probN =NonlinearProblem(f, u0, p)
solver =solve(probN, NLSolveJL(method =:fixedpoint))
Based on the nlsolve.jl file at the start of the stacktrace, I'm guessing the available methods should be (:newton, :trust_region, :anderson, :broyden).
The text was updated successfully, but these errors were encountered:
As claimed in the docs, a valid method for
NLSolveJL
is:fixedpoint
(https://docs.sciml.ai/NonlinearSolve/stable/api/nlsolve/). This algorithm doesn't seem to exist:Based on the
nlsolve.jl
file at the start of the stacktrace, I'm guessing the available methods should be(:newton, :trust_region, :anderson, :broyden)
.The text was updated successfully, but these errors were encountered: