Closed DanPuzzuoli closed 10 months ago
The latest version of diffrax changes the import path of AbstractSolver, causing an error to be raised.
diffrax
AbstractSolver
This PR fixes the issue, instead of from diffrax.solver import AbstractSolver, we now import as from diffrax import AbstractSolver.
from diffrax.solver import AbstractSolver
from diffrax import AbstractSolver
Summary
The latest version of
diffrax
changes the import path ofAbstractSolver
, causing an error to be raised.Details and comments
This PR fixes the issue, instead of
from diffrax.solver import AbstractSolver
, we now import asfrom diffrax import AbstractSolver
.