Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 4bc4ee7

Browse files
committed
format fix
1 parent f8dc450 commit 4bc4ee7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/klement.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ Klement()
55
66
A low-overhead implementation of [Klement](https://jatm.com.br/jatm/article/view/373).
77
This method is non-allocating on scalar and static array problems.
8-
9-
108
"""
119
struct Klement <: AbstractSimpleNonlinearSolveAlgorithm end
1210

@@ -32,7 +30,6 @@ function SciMLBase.solve(prob::NonlinearProblem,
3230
xₙ₋₁ = x
3331
fₙ₋₁ = fₙ
3432
for _ in 1:maxiters
35-
3633
xₙ = xₙ₋₁ - inv(J) * fₙ₋₁
3734
fₙ = f(xₙ)
3835
Δxₙ = xₙ - xₙ₋₁

0 commit comments

Comments
 (0)