Skip to content

Commit

Permalink
adapted docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
pnkraemer committed Aug 26, 2020
1 parent aa7deb3 commit 11606dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/probnum/diffeq/odefiltsmooth/ivpfiltsmooth.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class GaussianIVPFilter(odesolver.ODESolver):

def __init__(self, ivp, gaussfilt):
"""
steprule : stepsize rule
gaussfilt : gaussianfilter.GaussianFilter object,
e.g. the return value of ivp_to_ukf(), ivp_to_ekf1().
Expand All @@ -47,6 +46,8 @@ def solve(self, firststep, steprule, **kwargs):
----------
firststep : float
First step for adaptive step size rule.
steprule : StepRule
Step-size selection rule, e.g. constant steps or adaptive steps.
"""
current_rv = self.gfilt.initialrandomvariable
t = self.ivp.t0
Expand Down

0 comments on commit 11606dc

Please sign in to comment.