Skip to content

Commit b61480d

Browse files
authored
Merge branch 'main' into move-vf-to-corrections
2 parents 4517dff + 313d711 commit b61480d

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)
@@ -640,7 +630,7 @@ class _ProbabilisticSolver:
640630

641631
step_implementation: Callable
642632

643-
prior: _MarkovProcess
633+
prior: Callable
644634
ssm: Any
645635
strategy: _Strategy
646636
calibration: _Calibration

0 commit comments

Comments
 (0)