diff options
Diffstat (limited to 'lib/Numeric/GSL')
-rw-r--r-- | lib/Numeric/GSL/Minimization.hs | 2 | ||||
-rw-r--r-- | lib/Numeric/GSL/Vector.hs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/Numeric/GSL/Minimization.hs b/lib/Numeric/GSL/Minimization.hs index 930fe8a..a595da9 100644 --- a/lib/Numeric/GSL/Minimization.hs +++ b/lib/Numeric/GSL/Minimization.hs | |||
@@ -115,7 +115,7 @@ minimizeD method = minimizeDGen (fi (fromEnum method)) | |||
115 | 115 | ||
116 | ------------------------------------------------------------------------- | 116 | ------------------------------------------------------------------------- |
117 | 117 | ||
118 | 118 | ww2 w1 o1 w2 o2 f = w1 o1 $ \a1 -> w2 o2 $ \a2 -> f a1 a2 | |
119 | 119 | ||
120 | minimizeGen method eps maxit sz f xi = unsafePerformIO $ do | 120 | minimizeGen method eps maxit sz f xi = unsafePerformIO $ do |
121 | let xiv = fromList xi | 121 | let xiv = fromList xi |
diff --git a/lib/Numeric/GSL/Vector.hs b/lib/Numeric/GSL/Vector.hs index 92cda87..0366744 100644 --- a/lib/Numeric/GSL/Vector.hs +++ b/lib/Numeric/GSL/Vector.hs | |||
@@ -21,6 +21,7 @@ module Numeric.GSL.Vector ( | |||
21 | ) where | 21 | ) where |
22 | 22 | ||
23 | import Data.Packed.Internal.Common | 23 | import Data.Packed.Internal.Common |
24 | import Data.Packed.Internal.Signatures | ||
24 | import Data.Packed.Internal.Vector | 25 | import Data.Packed.Internal.Vector |
25 | 26 | ||
26 | import Complex | 27 | import Complex |