Skip to content

Commit 5453211

Browse files
committed
Remove unused MarkovProcess class
1 parent 373fe21 commit 5453211

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

probdiffeq/ivpsolvers.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,6 @@
1616
R = TypeVar("R")
1717

1818

19-
class _MarkovProcess(containers.NamedTuple):
20-
tcoeffs: Any
21-
output_scale: Any
22-
discretize: Callable
23-
24-
@property
25-
def num_derivatives(self):
26-
return len(self.tcoeffs) - 1
27-
28-
2919
def prior_wiener_integrated(tcoeffs, *, ssm_fact: str, output_scale=None):
3020
"""Construct an adaptive(/continuous-time), multiply-integrated Wiener process."""
3121
ssm = impl.choose(ssm_fact, tcoeffs_like=tcoeffs)
@@ -631,7 +621,7 @@ class _ProbabilisticSolver:
631621

632622
step_implementation: Callable
633623

634-
prior: _MarkovProcess
624+
prior: Callable
635625
ssm: Any
636626
strategy: _Strategy
637627
calibration: _Calibration

0 commit comments

Comments
 (0)