summaryrefslogtreecommitdiff
path: root/packages/special/lib/Numeric/GSL/Special/Psi.hs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/special/lib/Numeric/GSL/Special/Psi.hs')
-rw-r--r--packages/special/lib/Numeric/GSL/Special/Psi.hs26
1 files changed, 13 insertions, 13 deletions
diff --git a/packages/special/lib/Numeric/GSL/Special/Psi.hs b/packages/special/lib/Numeric/GSL/Special/Psi.hs
index da53d1b..2aede62 100644
--- a/packages/special/lib/Numeric/GSL/Special/Psi.hs
+++ b/packages/special/lib/Numeric/GSL/Special/Psi.hs
@@ -34,52 +34,52 @@ import Numeric.GSL.Special.Internal
34 34
35psi_int_e :: CInt -> (Double,Double) 35psi_int_e :: CInt -> (Double,Double)
36psi_int_e n = createSFR "psi_int_e" $ gsl_sf_psi_int_e n 36psi_int_e n = createSFR "psi_int_e" $ gsl_sf_psi_int_e n
37foreign import ccall SAFE_CHEAP "gsl_sf_psi_int_e" gsl_sf_psi_int_e :: CInt -> Ptr () -> IO CInt 37foreign import ccall unsafe "gsl_sf_psi_int_e" gsl_sf_psi_int_e :: CInt -> Ptr () -> IO CInt
38 38
39psi_int :: CInt -> Double 39psi_int :: CInt -> Double
40psi_int = gsl_sf_psi_int 40psi_int = gsl_sf_psi_int
41foreign import ccall SAFE_CHEAP "gsl_sf_psi_int" gsl_sf_psi_int :: CInt -> Double 41foreign import ccall unsafe "gsl_sf_psi_int" gsl_sf_psi_int :: CInt -> Double
42 42
43psi_e :: Double -> (Double,Double) 43psi_e :: Double -> (Double,Double)
44psi_e x = createSFR "psi_e" $ gsl_sf_psi_e x 44psi_e x = createSFR "psi_e" $ gsl_sf_psi_e x
45foreign import ccall SAFE_CHEAP "gsl_sf_psi_e" gsl_sf_psi_e :: Double -> Ptr () -> IO CInt 45foreign import ccall unsafe "gsl_sf_psi_e" gsl_sf_psi_e :: Double -> Ptr () -> IO CInt
46 46
47psi :: Double -> Double 47psi :: Double -> Double
48psi = gsl_sf_psi 48psi = gsl_sf_psi
49foreign import ccall SAFE_CHEAP "gsl_sf_psi" gsl_sf_psi :: Double -> Double 49foreign import ccall unsafe "gsl_sf_psi" gsl_sf_psi :: Double -> Double
50 50
51psi_1piy_e :: Double -> (Double,Double) 51psi_1piy_e :: Double -> (Double,Double)
52psi_1piy_e y = createSFR "psi_1piy_e" $ gsl_sf_psi_1piy_e y 52psi_1piy_e y = createSFR "psi_1piy_e" $ gsl_sf_psi_1piy_e y
53foreign import ccall SAFE_CHEAP "gsl_sf_psi_1piy_e" gsl_sf_psi_1piy_e :: Double -> Ptr () -> IO CInt 53foreign import ccall unsafe "gsl_sf_psi_1piy_e" gsl_sf_psi_1piy_e :: Double -> Ptr () -> IO CInt
54 54
55psi_1piy :: Double -> Double 55psi_1piy :: Double -> Double
56psi_1piy = gsl_sf_psi_1piy 56psi_1piy = gsl_sf_psi_1piy
57foreign import ccall SAFE_CHEAP "gsl_sf_psi_1piy" gsl_sf_psi_1piy :: Double -> Double 57foreign import ccall unsafe "gsl_sf_psi_1piy" gsl_sf_psi_1piy :: Double -> Double
58 58
59complex_psi_e :: Double -> Double -> ((Double,Double),(Double,Double)) 59complex_psi_e :: Double -> Double -> ((Double,Double),(Double,Double))
60complex_psi_e x y = create2SFR "complex_psi_e" $ gsl_sf_complex_psi_e x y 60complex_psi_e x y = create2SFR "complex_psi_e" $ gsl_sf_complex_psi_e x y
61foreign import ccall SAFE_CHEAP "gsl_sf_complex_psi_e" gsl_sf_complex_psi_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt 61foreign import ccall unsafe "gsl_sf_complex_psi_e" gsl_sf_complex_psi_e :: Double -> Double -> Ptr () -> Ptr () -> IO CInt
62 62
63psi_1_int_e :: CInt -> (Double,Double) 63psi_1_int_e :: CInt -> (Double,Double)
64psi_1_int_e n = createSFR "psi_1_int_e" $ gsl_sf_psi_1_int_e n 64psi_1_int_e n = createSFR "psi_1_int_e" $ gsl_sf_psi_1_int_e n
65foreign import ccall SAFE_CHEAP "gsl_sf_psi_1_int_e" gsl_sf_psi_1_int_e :: CInt -> Ptr () -> IO CInt 65foreign import ccall unsafe "gsl_sf_psi_1_int_e" gsl_sf_psi_1_int_e :: CInt -> Ptr () -> IO CInt
66 66
67psi_1_int :: CInt -> Double 67psi_1_int :: CInt -> Double
68psi_1_int = gsl_sf_psi_1_int 68psi_1_int = gsl_sf_psi_1_int
69foreign import ccall SAFE_CHEAP "gsl_sf_psi_1_int" gsl_sf_psi_1_int :: CInt -> Double 69foreign import ccall unsafe "gsl_sf_psi_1_int" gsl_sf_psi_1_int :: CInt -> Double
70 70
71psi_1_e :: Double -> (Double,Double) 71psi_1_e :: Double -> (Double,Double)
72psi_1_e x = createSFR "psi_1_e" $ gsl_sf_psi_1_e x 72psi_1_e x = createSFR "psi_1_e" $ gsl_sf_psi_1_e x
73foreign import ccall SAFE_CHEAP "gsl_sf_psi_1_e" gsl_sf_psi_1_e :: Double -> Ptr () -> IO CInt 73foreign import ccall unsafe "gsl_sf_psi_1_e" gsl_sf_psi_1_e :: Double -> Ptr () -> IO CInt
74 74
75psi_1 :: Double -> Double 75psi_1 :: Double -> Double
76psi_1 = gsl_sf_psi_1 76psi_1 = gsl_sf_psi_1
77foreign import ccall SAFE_CHEAP "gsl_sf_psi_1" gsl_sf_psi_1 :: Double -> Double 77foreign import ccall unsafe "gsl_sf_psi_1" gsl_sf_psi_1 :: Double -> Double
78 78
79psi_n_e :: CInt -> Double -> (Double,Double) 79psi_n_e :: CInt -> Double -> (Double,Double)
80psi_n_e n x = createSFR "psi_n_e" $ gsl_sf_psi_n_e n x 80psi_n_e n x = createSFR "psi_n_e" $ gsl_sf_psi_n_e n x
81foreign import ccall SAFE_CHEAP "gsl_sf_psi_n_e" gsl_sf_psi_n_e :: CInt -> Double -> Ptr () -> IO CInt 81foreign import ccall unsafe "gsl_sf_psi_n_e" gsl_sf_psi_n_e :: CInt -> Double -> Ptr () -> IO CInt
82 82
83psi_n :: CInt -> Double -> Double 83psi_n :: CInt -> Double -> Double
84psi_n = gsl_sf_psi_n 84psi_n = gsl_sf_psi_n
85foreign import ccall SAFE_CHEAP "gsl_sf_psi_n" gsl_sf_psi_n :: CInt -> Double -> Double 85foreign import ccall unsafe "gsl_sf_psi_n" gsl_sf_psi_n :: CInt -> Double -> Double