Skip to content

Commit 1c2b229

Browse files
committed
removed the best so far fixed point
1 parent 56d8c0b commit 1c2b229

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

diffrax/_delays.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from equinox.internal import unvmap_any
88
from jaxtyping import Array, PyTree
99
from optimistix import (
10-
BestSoFarFixedPoint,
1110
fixed_point,
1211
FixedPointIteration,
1312
Newton,
@@ -189,7 +188,7 @@ def fn(dense_info, args):
189188

190189
return new_dense_info, (y, y_error, solver_state, solver_result)
191190

192-
solv = BestSoFarFixedPoint(FixedPointIteration(rtol=delays.rtol, atol=delays.atol))
191+
solv = FixedPointIteration(rtol=delays.rtol, atol=delays.atol)
193192

194193
nonlinear_args = (
195194
terms,

0 commit comments

Comments
 (0)