summaryrefslogtreecommitdiff
path: root/lib/Numeric/GSL/Polynomials.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2011-12-25 03:33:01 -0800
committerAlberto Ruiz <aruiz@um.es>2011-12-25 03:33:01 -0800
commitea4da824ebc0ad09431aa276d8d44e4908e542c0 (patch)
tree950e968a34d46011476bb7fe0adf25c2f6c37ae4 /lib/Numeric/GSL/Polynomials.hs
parentc3bda2d38c432fb53ce456cba295b097fd4d6ad1 (diff)
parent43956aff360476d095b03fbbdef20f18df2dc933 (diff)
Merge pull request #1 from basvandijk/master
Fix build on GHC-7.4.1-rc1 and some other patches
Diffstat (limited to 'lib/Numeric/GSL/Polynomials.hs')
-rw-r--r--lib/Numeric/GSL/Polynomials.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Numeric/GSL/Polynomials.hs b/lib/Numeric/GSL/Polynomials.hs
index 9885920..b21b1b6 100644
--- a/lib/Numeric/GSL/Polynomials.hs
+++ b/lib/Numeric/GSL/Polynomials.hs
@@ -1,4 +1,4 @@
1{-# LANGUAGE ForeignFunctionInterface #-} 1{-# LANGUAGE CPP, ForeignFunctionInterface #-}
2----------------------------------------------------------------------------- 2-----------------------------------------------------------------------------
3{- | 3{- |
4Module : Numeric.GSL.Polynomials 4Module : Numeric.GSL.Polynomials
@@ -23,6 +23,10 @@ import Data.Packed.Internal
23import Data.Complex 23import Data.Complex
24import System.IO.Unsafe (unsafePerformIO) 24import System.IO.Unsafe (unsafePerformIO)
25 25
26#if __GLASGOW_HASKELL__ >= 704
27import Foreign.C.Types (CInt(..))
28#endif
29
26{- | Solution of general polynomial equations, using /gsl_poly_complex_solve/. For example, 30{- | Solution of general polynomial equations, using /gsl_poly_complex_solve/. For example,
27 the three solutions of x^3 + 8 = 0 31 the three solutions of x^3 + 8 = 0
28 32