summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-07-28 18:44:22 +0000
committerAlberto Ruiz <aruiz@um.es>2007-07-28 18:44:22 +0000
commit7bf1ba2ecbb9d58c42b8710a76857ed34575290f (patch)
treebb00b19a1b76183272b98b99d37e6190e8f4d1d7
parent8731b5e093e0014472e870bf5166e2d074d206c1 (diff)
GSL.Special.Bessel.hs
-rw-r--r--HSSL.cabal1
-rw-r--r--lib/GSL/Special.hs2
2 files changed, 3 insertions, 0 deletions
diff --git a/HSSL.cabal b/HSSL.cabal
index 8b6f2a6..3b6c682 100644
--- a/HSSL.cabal
+++ b/HSSL.cabal
@@ -31,6 +31,7 @@ Exposed-modules: Data.Packed.Internal,
31 GSL.Special, GSL.Special.Internal, 31 GSL.Special, GSL.Special.Internal,
32 GSL.Special.Gamma, GSL.Special.Erf, 32 GSL.Special.Gamma, GSL.Special.Erf,
33 GSL.Special.Airy, GSL.Special.Exp, 33 GSL.Special.Airy, GSL.Special.Exp,
34 GSL.Special.Bessel,
34 GSL.Fourier, 35 GSL.Fourier,
35 GSL.Polynomials, 36 GSL.Polynomials,
36 GSL.Minimization, 37 GSL.Minimization,
diff --git a/lib/GSL/Special.hs b/lib/GSL/Special.hs
index 6786dc5..8124055 100644
--- a/lib/GSL/Special.hs
+++ b/lib/GSL/Special.hs
@@ -17,6 +17,7 @@ Wrappers for selected special functions.
17 17
18module GSL.Special ( 18module GSL.Special (
19 module GSL.Special.Airy, 19 module GSL.Special.Airy,
20 module GSL.Special.Bessel,
20 module GSL.Special.Erf, 21 module GSL.Special.Erf,
21 module GSL.Special.Exp, 22 module GSL.Special.Exp,
22 module GSL.Special.Gamma 23 module GSL.Special.Gamma
@@ -29,6 +30,7 @@ import GSL.Special.Gamma
29import GSL.Special.Erf 30import GSL.Special.Erf
30import GSL.Special.Exp 31import GSL.Special.Exp
31import GSL.Special.Airy 32import GSL.Special.Airy
33import GSL.Special.Bessel
32 34
33-------------------- simple functions -------------------------- 35-------------------- simple functions --------------------------
34 36