summaryrefslogtreecommitdiff
path: root/lib/Numeric/GSL/ODE.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2012-03-13 15:23:30 +0100
committerAlberto Ruiz <aruiz@um.es>2012-03-13 15:23:30 +0100
commitb959655b75da207fd7ac1c785a6ea9924d70d5a6 (patch)
tree0031778af5633100993d8447a5cbe021b1d3066f /lib/Numeric/GSL/ODE.hs
parentc5fcca336f7d1ad6235d411268d8ff946bbe7f0c (diff)
parent0904bbd0befa48e98858def1b6d036c5b2f00bf1 (diff)
Merge branch 'unsafe' into develop
Diffstat (limited to 'lib/Numeric/GSL/ODE.hs')
-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 c243f4b..3994210 100644
--- a/lib/Numeric/GSL/ODE.hs
+++ b/lib/Numeric/GSL/ODE.hs
@@ -116,7 +116,7 @@ odeSolveV' method mbjac h epsAbs epsRel f xiv ts = unsafePerformIO $ do
116 freeHaskellFunPtr fp 116 freeHaskellFunPtr fp
117 return sol 117 return sol
118 118
119foreign import ccall "ode" 119foreign import ccall safe "ode"
120 ode_c :: CInt -> Double -> Double -> Double -> FunPtr (Double -> TVV) -> FunPtr (Double -> TVM) -> TVVM 120 ode_c :: CInt -> Double -> Double -> Double -> FunPtr (Double -> TVV) -> FunPtr (Double -> TVM) -> TVVM
121 121
122------------------------------------------------------- 122-------------------------------------------------------