We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
julia> sol = solve(NonlinearLeastSquaresProblem((x, p) -> x, ones(3)), GaussNewton()) u: 3-element Vector{Float64}: 0.0 0.0 0.0 julia> sol.retcode ReturnCode.Success = 1 julia> sol = solve(NonlinearLeastSquaresProblem((x, p) -> x, zeros(3)), GaussNewton()) u: 3-element Vector{Float64}: 0.0 0.0 0.0 julia> sol.retcode ReturnCode.Unstable = 6
The text was updated successfully, but these errors were encountered:
https://github.com/SciML/DiffEqBase.jl/blob/8c0db9efb1a3907e3abb596545474621986b36fc/src/termination_conditions.jl#L290 line needs to be > else if the initial point is the solution, we hit protective termination
>
Sorry, something went wrong.
SciML/DiffEqBase.jl@ccdd2f8
Merge pull request #967 from SciML/ap/fix_eq
bae8e9a
Fixes nonlinear termination condition convergance (SciML/NonlinearSolve.jl#284)
No branches or pull requests
The text was updated successfully, but these errors were encountered: