summaryrefslogtreecommitdiff
path: root/lib/Numeric/GSL/ODE.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/GSL/ODE.hs')
-rw-r--r--lib/Numeric/GSL/ODE.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Numeric/GSL/ODE.hs b/lib/Numeric/GSL/ODE.hs
index 2251acd..d4f83aa 100644
--- a/lib/Numeric/GSL/ODE.hs
+++ b/lib/Numeric/GSL/ODE.hs
@@ -50,8 +50,8 @@ data ODEMethod = RK2 -- ^ Embedded Runge-Kutta (2, 3) method.
50 | RK2imp -- ^ Implicit 2nd order Runge-Kutta at Gaussian points. 50 | RK2imp -- ^ Implicit 2nd order Runge-Kutta at Gaussian points.
51 | RK4imp -- ^ Implicit 4th order Runge-Kutta at Gaussian points. 51 | RK4imp -- ^ Implicit 4th order Runge-Kutta at Gaussian points.
52 | BSimp -- ^ Implicit Bulirsch-Stoer method of Bader and Deuflhard. This algorithm requires the Jacobian. 52 | BSimp -- ^ Implicit Bulirsch-Stoer method of Bader and Deuflhard. This algorithm requires the Jacobian.
53 | Gear1 -- ^ M=1 implicit Gear method. 53 | MSAdams -- ^ A variable-coefficient linear multistep Adams method in Nordsieck form.
54 | Gear2 -- ^ M=2 implicit Gear method. 54 | MSBDF -- ^ A variable-coefficient linear multistep backward differentiation formula (BDF) method in Nordsieck form.
55 deriving (Enum,Eq,Show,Bounded) 55 deriving (Enum,Eq,Show,Bounded)
56 56
57-- | A version of 'odeSolveV' with reasonable default parameters and system of equations defined using lists. 57-- | A version of 'odeSolveV' with reasonable default parameters and system of equations defined using lists.