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

Commit eb5066d

Browse files
committed
format
1 parent 2a43225 commit eb5066d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/alefeld.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ function SciMLBase.solve(prob::IntervalNonlinearProblem,
1717
c = a - (b - a) / (f(b) - f(a)) * f(a)
1818

1919
fc = f(c)
20-
(a == c || b == c) &&
20+
(a == c || b == c) &&
2121
return SciMLBase.build_solution(prob, alg, c, fc;
2222
retcode = ReturnCode.FloatingPointLimit,
23-
left = a,
23+
left = a,
2424
right = b)
2525
iszero(fc) &&
2626
return SciMLBase.build_solution(prob, alg, c, fc;

0 commit comments

Comments
 (0)