Skip to content

Commit 3e94a84

Browse files
committed
Delete outdated comments
1 parent 7da15f1 commit 3e94a84

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

probdiffeq/impl/impl.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,6 @@ def __eq__(self, other):
2929

3030
def choose(which: str, /, *, tcoeffs_like) -> FactImpl:
3131
"""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-
3832
if which == "dense":
3933
return _select_dense(tcoeffs_like=tcoeffs_like)
4034
if which == "isotropic":

0 commit comments

Comments
 (0)