diffrax icon indicating copy to clipboard operation
diffrax copied to clipboard

Revisit wrapped solvers

Open patrick-kidger opened this issue 1 year ago • 1 comments

These don't really work properly at the moment. For example

class MySolver(AbstractWrappedSolver):
    ...

diffeqsolve(solver=MySolver(Kvaerno3()), stepsize_controller=PIDController(...), ...)

does not work because MySolver doesn't have a nonlinear_solver attribute for the PIDController to apply its rtol and atol to.

patrick-kidger avatar Jan 23 '23 22:01 patrick-kidger