Skip to content

Commit 2ffd64d

Browse files
Merge pull request #148 from patrick-kidger/heun-ralston-doc-fix
Heun ralston doc fix
2 parents ecf2690 + c9dbcac commit 2ffd64d

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

diffrax/solver/bosh3.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ class Bosh3(AbstractERK):
2222
3rd order explicit Runge--Kutta method. Has an embedded 2nd order method for
2323
adaptive step sizing.
2424
25-
Also sometimes known as "Heun's third order method". (Not to be confused with
26-
[`diffrax.Heun`][], which is a second order method).
25+
Also sometimes known as "Ralston's third order method".
2726
"""
2827

2928
tableau = _bosh3_tableau

diffrax/solver/heun.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ class Heun(AbstractERK, AbstractStratonovichSolver):
2323
or "explicit trapezoidal rule".
2424
2525
Should not be confused with Heun's third order method, which is a different (higher
26-
order) method occasionally also just referred to as "Heun's method". (Which is
27-
available in Diffrax as [`diffrax.Bosh3`][].)
26+
order) method occasionally also just referred to as "Heun's method".
2827
2928
When used to solve SDEs, converges to the Stratonovich solution.
3029
"""

0 commit comments

Comments
 (0)