Skip to content

Commit

Permalink
Handle spelling change
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Oct 17, 2022
1 parent 67b2dab commit 8b25204
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ModelingToolkit"
uuid = "961ee093-0014-501f-94e3-6117800e7a78"
authors = ["Yingbo Ma <mayingbo5@gmail.com>", "Chris Rackauckas <accounts@chrisrackauckas.com> and contributors"]
version = "8.28.1"
version = "8.28.2"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
2 changes: 1 addition & 1 deletion src/structural_transformation/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ function numerical_nlsolve(f, u0, p)
prob = NonlinearProblem{false}(f, u0, p)
sol = solve(prob, NewtonRaphson())
rc = sol.retcode
rc == :DEFAULT || nlsolve_failure(rc)
rc == :DEFAULT || rc == :Default || nlsolve_failure(rc)
# TODO: robust initial guess, better debugging info, and residual check
sol.u
end

0 comments on commit 8b25204

Please sign in to comment.