Skip to content

Commit ac92e10

Browse files
committed
chore: run formatter
1 parent 511be2f commit ac92e10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/core/nlls_tests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ using Reexport
55
using LineSearches: LineSearches, Static, HagerZhang, MoreThuente, StrongWolfe
66

77
linesearches = []
8-
for ls in (Static(), HagerZhang(), MoreThuente(), StrongWolfe(), LineSearches.BackTracking())
8+
for ls in (
9+
Static(), HagerZhang(), MoreThuente(), StrongWolfe(), LineSearches.BackTracking())
910
push!(linesearches, LineSearchesJL(; method = ls))
1011
end
1112
push!(linesearches, BackTracking())
@@ -37,7 +38,6 @@ for linsolve in [nothing, LUFactorization(), KrylovJL_GMRES(), KrylovJL_LSMR()]
3738
vjp_autodiffs = linsolve isa KrylovJL ? [nothing, AutoZygote(), AutoFiniteDiff()] :
3839
[nothing]
3940
for linesearch in linesearches, vjp_autodiff in vjp_autodiffs
40-
4141
push!(solvers, GaussNewton(; linsolve, linesearch, vjp_autodiff))
4242
end
4343
end

0 commit comments

Comments
 (0)