Skip to content

Commit 2a1eadb

Browse files
committed
Fix Halley
1 parent ffdc60c commit 2a1eadb

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/nlsolve/halley.jl

+1-2
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,8 @@ function SciMLBase.__solve(prob::NonlinearProblem, alg::SimpleHalley, args...;
7878
cᵢ = _restructure(cᵢ, cᵢ_)
7979

8080
if i == 1
81-
if iszero(fx)
81+
all(iszero(fx)) &&
8282
return build_solution(prob, alg, x, fx; retcode = ReturnCode.Success)
83-
end
8483
else
8584
# Termination Checks
8685
tc_sol = check_termination(tc_cache, fx, x, xo, prob, alg)

src/nlsolve/trustRegion.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function SciMLBase.__solve(prob::NonlinearProblem, alg::SimpleTrustRegion, args.
9292
termination_condition)
9393

9494
# Set default trust region radius if not specified by user.
95-
Δₘₐₓ == 0 && (Δₘₐₓ = max(norm_fx, maximum(x) - minimum(x)))
95+
Δₘₐₓ = ifelse(iszero(Δₘₐₓ), max(norm_fx, maximum(x) - minimum(x)), Δₘₐₓ)
9696
if Δ == 0
9797
if _unwrap_val(alg.nlsolve_update_rule)
9898
norm_x = norm(x)

0 commit comments

Comments
 (0)