Skip to content

Commit b117a11

Browse files
Format .jl files [skip ci] (#426)
Co-authored-by: jverzani <[email protected]>
1 parent 5ecd7a0 commit b117a11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/convergence.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ function decide_convergence(
276276
state::AbstractUnivariateZeroState{T,S},
277277
options,
278278
val,
279-
) where {T, S}
279+
) where {T,S}
280280
xn0, xn1 = state.xn0, state.xn1
281281
fxn1 = state.fxn1
282282
val (:f_converged, :exact_zero, :converged) && return xn1

src/hybrid.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function solve!(
8080
r, a, b = state0.xn1, state.xn0, state.xn1
8181
Δr = abs(r - b)
8282
Δx = abs(b - a)
83-
ts, TB = one(r)/1000, 100*one(r) # too small, too big
83+
ts, TB = one(r) / 1000, 100 * one(r) # too small, too big
8484
if Δr >= TB * Δx
8585
adj = true
8686
r = b + sign(r - b) * TB * Δx ## too big

0 commit comments

Comments
 (0)