Skip to content

Commit 6170c29

Browse files
committed
Format
1 parent 28bb36b commit 6170c29

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/NonlinearSolve.jl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -118,18 +118,18 @@ include("default.jl")
118118

119119
@compile_workload begin
120120
@sync begin
121-
for T in (Float32, Float64), (fn, u0) in nlfuncs
122-
Threads.@spawn NonlinearProblem(fn, T.(u0), T(2))
123-
end
124-
for (fn, u0) in nlfuncs
125-
Threads.@spawn NonlinearLeastSquaresProblem(fn, u0, 2.0)
126-
end
127-
for prob in probs_nls, alg in nls_algs
128-
Threads.@spawn solve(prob, alg; abstol = 1e-2, verbose = false)
129-
end
130-
for prob in probs_nlls, alg in nlls_algs
131-
Threads.@spawn solve(prob, alg; abstol = 1e-2, verbose = false)
132-
end
121+
for T in (Float32, Float64), (fn, u0) in nlfuncs
122+
Threads.@spawn NonlinearProblem(fn, T.(u0), T(2))
123+
end
124+
for (fn, u0) in nlfuncs
125+
Threads.@spawn NonlinearLeastSquaresProblem(fn, u0, 2.0)
126+
end
127+
for prob in probs_nls, alg in nls_algs
128+
Threads.@spawn solve(prob, alg; abstol = 1e-2, verbose = false)
129+
end
130+
for prob in probs_nlls, alg in nlls_algs
131+
Threads.@spawn solve(prob, alg; abstol = 1e-2, verbose = false)
132+
end
133133
end
134134
end
135135
end

0 commit comments

Comments
 (0)