Skip to content

Commit

Permalink
Remove mention to complex domain
Browse files Browse the repository at this point in the history
See #31.
  • Loading branch information
maurosilber committed Jun 13, 2024
1 parent c8c78fa commit cd06207
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions nbkode/runge_kutta/explicit.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ class RungeKutta23(FSAL):
assuming accuracy of the second-order method, but steps are taken using the
third-order accurate formula (local extrapolation is done). A cubic Hermite
polynomial is used for the dense output.
Can be applied in the complex domain.
References
----------
Expand Down Expand Up @@ -173,7 +172,6 @@ class RungeKutta45(FSAL):
assuming accuracy of the fourth-order method accuracy, but steps are taken
using the fifth-order accurate formula (local extrapolation is done).
A quartic interpolation polynomial is used for the dense output [3]_.
Can be applied in the complex domain.
References
----------
Expand Down Expand Up @@ -287,8 +285,6 @@ class DOP853(FSAL):
This is a Python implementation of "DOP853" algorithm originally written
in Fortran [#]_, [#]_. Note that this is not a literate translation, but
the algorithmic core and coefficients are the same.
Can be applied in the complex domain.
References
----------
Expand Down Expand Up @@ -486,7 +482,6 @@ def evaluate(self, t_eval):


if not NO_NUMBA:

from ..buffer import AlignedBuffer

RkInterpolator = numba.jitclass(
Expand Down

0 comments on commit cd06207

Please sign in to comment.