summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--THANKS.md2
-rw-r--r--lib/Numeric/GSL/ODE.hs2
2 files changed, 3 insertions, 1 deletions
diff --git a/THANKS.md b/THANKS.md
index fdc09a3..3159b07 100644
--- a/THANKS.md
+++ b/THANKS.md
@@ -111,3 +111,5 @@ module reorganization, monadic mapVectorM, and many other improvements.
111 111
112- Clark Gaebel removed superfluous thread safety. 112- Clark Gaebel removed superfluous thread safety.
113 113
114- Jeffrey Burdges reported a glpk link problem on OS/X
115
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