summaryrefslogtreecommitdiff
path: root/lib/GSL/Special.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-07-28 18:35:00 +0000
committerAlberto Ruiz <aruiz@um.es>2007-07-28 18:35:00 +0000
commit8731b5e093e0014472e870bf5166e2d074d206c1 (patch)
tree76c49133991b25e6587d617185236a8c789e7023 /lib/GSL/Special.hs
parent774924233c87a20c31a3232cbd01d9bf5170a951 (diff)
GSL.Special.Exp.hs
Diffstat (limited to 'lib/GSL/Special.hs')
-rw-r--r--lib/GSL/Special.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/GSL/Special.hs b/lib/GSL/Special.hs
index 01aec2b..6786dc5 100644
--- a/lib/GSL/Special.hs
+++ b/lib/GSL/Special.hs
@@ -9,7 +9,7 @@ Maintainer : Alberto Ruiz (aruiz at um dot es)
9Stability : provisional 9Stability : provisional
10Portability : uses ffi 10Portability : uses ffi
11 11
12Wrappers for a few special functions. 12Wrappers for selected special functions.
13 13
14<http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html#Special-Functions> 14<http://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html#Special-Functions>
15-} 15-}
@@ -18,9 +18,8 @@ Wrappers for a few special functions.
18module GSL.Special ( 18module GSL.Special (
19 module GSL.Special.Airy, 19 module GSL.Special.Airy,
20 module GSL.Special.Erf, 20 module GSL.Special.Erf,
21 module GSL.Special.Gamma, 21 module GSL.Special.Exp,
22 bessel_J0_e, 22 module GSL.Special.Gamma
23 exp_e10_e
24) 23)
25where 24where
26 25
@@ -28,6 +27,7 @@ import Foreign
28import GSL.Special.Internal 27import GSL.Special.Internal
29import GSL.Special.Gamma 28import GSL.Special.Gamma
30import GSL.Special.Erf 29import GSL.Special.Erf
30import GSL.Special.Exp
31import GSL.Special.Airy 31import GSL.Special.Airy
32 32
33-------------------- simple functions -------------------------- 33-------------------- simple functions --------------------------