Skip to content

Commit dd2c011

Browse files
committed
chore: run formatter
1 parent a0c3d06 commit dd2c011

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/SimpleNonlinearSolve/src/SimpleNonlinearSolve.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ function solve_adjoint_internal end
8181
prob_oop = NonlinearProblem{false}((u, p) -> u .* u .- p, ones(T, 3), T(2))
8282

8383
# Only compile frequently used algorithms -- mostly from the NonlinearSolve default
84+
#!format: off
8485
algs = [
8586
SimpleBroyden(),
8687
# SimpleDFSane(),
@@ -90,6 +91,7 @@ function solve_adjoint_internal end
9091
SimpleNewtonRaphson(; autodiff = AutoForwardDiff(; chunksize = 1)),
9192
# SimpleTrustRegion()
9293
]
94+
#!format: on
9395

9496
@compile_workload begin
9597
@sync for alg in algs
@@ -101,7 +103,6 @@ function solve_adjoint_internal end
101103
end
102104
end
103105

104-
105106
export AutoFiniteDiff, AutoForwardDiff, AutoPolyesterForwardDiff
106107

107108
export Alefeld, Bisection, Brent, Falsi, ITP, Ridder

0 commit comments

Comments
 (0)