Skip to content

Commit

Permalink
removed the best so far fixed point
Browse files Browse the repository at this point in the history
  • Loading branch information
thibmonsel committed Jan 12, 2024
1 parent 56d8c0b commit 1c2b229
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions diffrax/_delays.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from equinox.internal import unvmap_any
from jaxtyping import Array, PyTree
from optimistix import (
BestSoFarFixedPoint,
fixed_point,
FixedPointIteration,
Newton,
Expand Down Expand Up @@ -189,7 +188,7 @@ def fn(dense_info, args):

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

solv = BestSoFarFixedPoint(FixedPointIteration(rtol=delays.rtol, atol=delays.atol))
solv = FixedPointIteration(rtol=delays.rtol, atol=delays.atol)

nonlinear_args = (
terms,
Expand Down

0 comments on commit 1c2b229

Please sign in to comment.