summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2012-03-14 10:21:48 +0100
committerAlberto Ruiz <aruiz@um.es>2012-03-14 10:21:48 +0100
commita71ec8e77f6fd8cfd78d7d9375516d6da02afd81 (patch)
tree4f211972f6a65376f900e1ce7296311d0fd16863 /lib
parent93315bda7416acaea2eb35a0b3a8be100cb3b2c9 (diff)
type hint and thanks
Diffstat (limited to 'lib')
-rw-r--r--lib/Numeric/GSL/ODE.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Numeric/GSL/ODE.hs b/lib/Numeric/GSL/ODE.hs
index 3994210..ab037bd 100644
--- a/lib/Numeric/GSL/ODE.hs
+++ b/lib/Numeric/GSL/ODE.hs
@@ -19,7 +19,7 @@ import Graphics.Plot
19 19
20xdot t [x,v] = [v, -0.95*x - 0.1*v] 20xdot t [x,v] = [v, -0.95*x - 0.1*v]
21 21
22ts = linspace 100 (0,20) 22ts = linspace 100 (0,20 :: Double)
23 23
24sol = odeSolve xdot [10,0] ts 24sol = odeSolve xdot [10,0] ts
25 25