diff options
author | Bas van Dijk <v.dijk.bas@gmail.com> | 2011-09-01 14:25:37 +0000 |
---|---|---|
committer | Bas van Dijk <v.dijk.bas@gmail.com> | 2011-09-01 14:25:37 +0000 |
commit | 4e6c686dd496e9b7bdd209da3e8fbd3ac47de65a (patch) | |
tree | e54a0d2639624bd5f40ea25e6539699b68e59261 /lib/Numeric/GSL/Minimization.hs | |
parent | c236a193ed710a29b6940b87bcbe05cb8f4a086a (diff) |
Get rid of some deprecation warnings & Use more explicit imports
Diffstat (limited to 'lib/Numeric/GSL/Minimization.hs')
-rw-r--r-- | lib/Numeric/GSL/Minimization.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Numeric/GSL/Minimization.hs b/lib/Numeric/GSL/Minimization.hs index 729f383..5770c91 100644 --- a/lib/Numeric/GSL/Minimization.hs +++ b/lib/Numeric/GSL/Minimization.hs | |||
@@ -62,10 +62,12 @@ module Numeric.GSL.Minimization ( | |||
62 | 62 | ||
63 | import Data.Packed.Internal | 63 | import Data.Packed.Internal |
64 | import Data.Packed.Matrix | 64 | import Data.Packed.Matrix |
65 | import Foreign | ||
66 | import Foreign.C.Types(CInt) | ||
67 | import Numeric.GSL.Internal | 65 | import Numeric.GSL.Internal |
68 | 66 | ||
67 | import Foreign.Ptr(Ptr, FunPtr, freeHaskellFunPtr) | ||
68 | import Foreign.C.Types(CInt) | ||
69 | import System.IO.Unsafe(unsafePerformIO) | ||
70 | |||
69 | ------------------------------------------------------------------------ | 71 | ------------------------------------------------------------------------ |
70 | 72 | ||
71 | {-# DEPRECATED minimizeNMSimplex "use minimize NMSimplex2 eps maxit sizes f xi" #-} | 73 | {-# DEPRECATED minimizeNMSimplex "use minimize NMSimplex2 eps maxit sizes f xi" #-} |