diff options
-rw-r--r-- | THANKS.md | 2 | ||||
-rw-r--r-- | lib/Numeric/GSL/ODE.hs | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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 | ||
20 | xdot t [x,v] = [v, -0.95*x - 0.1*v] | 20 | xdot t [x,v] = [v, -0.95*x - 0.1*v] |
21 | 21 | ||
22 | ts = linspace 100 (0,20) | 22 | ts = linspace 100 (0,20 :: Double) |
23 | 23 | ||
24 | sol = odeSolve xdot [10,0] ts | 24 | sol = odeSolve xdot [10,0] ts |
25 | 25 | ||