diff options
author | Alberto Ruiz <aruiz@um.es> | 2009-05-16 17:40:44 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2009-05-16 17:40:44 +0000 |
commit | ead458786713d4b66933938b304886f629179613 (patch) | |
tree | 2d3a70b649d8d291ee55d4ec5c17807d05575287 /lib/Numeric/GSL/Special/Pow_int.hs | |
parent | 1412579714611555ae6263aed1bd8ffe71fa5961 (diff) |
headers removed in GSL Special functions
Diffstat (limited to 'lib/Numeric/GSL/Special/Pow_int.hs')
-rw-r--r-- | lib/Numeric/GSL/Special/Pow_int.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Numeric/GSL/Special/Pow_int.hs b/lib/Numeric/GSL/Special/Pow_int.hs index f30dfb9..a1a1066 100644 --- a/lib/Numeric/GSL/Special/Pow_int.hs +++ b/lib/Numeric/GSL/Special/Pow_int.hs | |||
@@ -28,11 +28,11 @@ import Numeric.GSL.Special.Internal | |||
28 | -- <http://www.google.com/search?q=gsl_sf_pow_int_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 28 | -- <http://www.google.com/search?q=gsl_sf_pow_int_e&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
29 | pow_int_e :: Double -> CInt -> (Double,Double) | 29 | pow_int_e :: Double -> CInt -> (Double,Double) |
30 | pow_int_e x n = createSFR "pow_int_e" $ gsl_sf_pow_int_e x n | 30 | pow_int_e x n = createSFR "pow_int_e" $ gsl_sf_pow_int_e x n |
31 | foreign import ccall "pow_int.h gsl_sf_pow_int_e" gsl_sf_pow_int_e :: Double -> CInt -> Ptr () -> IO CInt | 31 | foreign import ccall "gsl_sf_pow_int_e" gsl_sf_pow_int_e :: Double -> CInt -> Ptr () -> IO CInt |
32 | 32 | ||
33 | -- | wrapper for double gsl_sf_pow_int(double x,int n); | 33 | -- | wrapper for double gsl_sf_pow_int(double x,int n); |
34 | -- | 34 | -- |
35 | -- <http://www.google.com/search?q=gsl_sf_pow_int&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> | 35 | -- <http://www.google.com/search?q=gsl_sf_pow_int&as_sitesearch=www.gnu.org/software/gsl/manual&btnI=Lucky> |
36 | pow_int :: Double -> CInt -> Double | 36 | pow_int :: Double -> CInt -> Double |
37 | pow_int = gsl_sf_pow_int | 37 | pow_int = gsl_sf_pow_int |
38 | foreign import ccall "pow_int.h gsl_sf_pow_int" gsl_sf_pow_int :: Double -> CInt -> Double | 38 | foreign import ccall "gsl_sf_pow_int" gsl_sf_pow_int :: Double -> CInt -> Double |