We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7da15f1 commit 3e94a84Copy full SHA for 3e94a84
1 file changed
probdiffeq/impl/impl.py
@@ -29,12 +29,6 @@ def __eq__(self, other):
29
30
def choose(which: str, /, *, tcoeffs_like) -> FactImpl:
31
"""Choose a state-space model implementation."""
32
- # u0 = np.asarray(tcoeffs_like[0])
33
- # if u0.ndim != 1:
34
- # msg = "'tcoeffs' expected to have shape=(d,), "
35
- # msg += f"but shape={u0.shape} received."
36
- # raise ValueError(msg)
37
-
38
if which == "dense":
39
return _select_dense(tcoeffs_like=tcoeffs_like)
40
if which == "isotropic":
0 commit comments