Skip to content

Commit a3f21f2

Browse files
committed
Clean up comments
1 parent 3e94a84 commit a3f21f2

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

probdiffeq/taylor.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ def runge_kutta_starter(dt, *, num: int, prior, ssm, atol=1e-12, rtol=1e-10):
1010
"""Create an estimator that uses a Runge-Kutta starter."""
1111

1212
def starter(vf, initial_values: tuple, /, t):
13-
# TODO [inaccuracy]: the initial-value uncertainty is discarded
14-
# TODO [feature]: allow implementations other than IsoIBM?
15-
# TODO [feature]: higher-order ODEs
13+
# TODO: higher-order ODEs
14+
# TODO: allow flexible "solve" method?
1615

1716
# Assertions and early exits
1817

@@ -28,7 +27,6 @@ def starter(vf, initial_values: tuple, /, t):
2827

2928
# Generate data
3029

31-
# TODO: allow flexible "solve" method?
3230
k = num + 1 # important: k > num
3331
ts = np.linspace(t, t + dt * (k - 1), num=k, endpoint=True)
3432
ys = ode.odeint_and_save_at(

0 commit comments

Comments
 (0)