Skip to content

Commit 572557b

Browse files
committed
Formatting
1 parent f46984a commit 572557b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/levenberg.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function SciMLBase.__init(prob::Union{NonlinearProblem{uType, iip},
148148
u = alias_u0 ? u0 : deepcopy(u0)
149149
fu1 = evaluate_f(prob, u)
150150
uf, linsolve, J, fu2, jac_cache, du, JᵀJ, v = jacobian_caches(alg, f, u, p, Val(iip);
151-
linsolve_kwargs, linsolve_with_JᵀJ=Val(true))
151+
linsolve_kwargs, linsolve_with_JᵀJ = Val(true))
152152

153153
λ = convert(eltype(u), alg.damping_initial)
154154
λ_factor = convert(eltype(u), alg.damping_increase_factor)

test/23_test_problems.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ end
5151
end
5252

5353
@testset "TrustRegion test problem library" begin
54-
alg_ops = (LevenbergMarquardt(; linsolve=NormalCholeskyFactorization()),
55-
LevenbergMarquardt(; α_geodesic = 0.1, linsolve=NormalCholeskyFactorization()))
54+
alg_ops = (LevenbergMarquardt(; linsolve = NormalCholeskyFactorization()),
55+
LevenbergMarquardt(; α_geodesic = 0.1, linsolve = NormalCholeskyFactorization()))
5656

5757
# dictionary with indices of test problems where method does not converge to small residual
5858
broken_tests = Dict(alg => Int[] for alg in alg_ops)

0 commit comments

Comments
 (0)