diff options
Diffstat (limited to 'lib/GSL.hs')
-rw-r--r-- | lib/GSL.hs | 36 |
1 files changed, 9 insertions, 27 deletions
@@ -8,43 +8,25 @@ Maintainer : Alberto Ruiz (aruiz at um dot es) | |||
8 | Stability : provisional | 8 | Stability : provisional |
9 | Portability : uses -fffi and -fglasgow-exts | 9 | Portability : uses -fffi and -fglasgow-exts |
10 | 10 | ||
11 | This module reexports the basic functionality and a collection of utilities (old interface) | 11 | This module reexports all the GSL functions (except those in "LinearAlgebra"). |
12 | 12 | ||
13 | -} | 13 | -} |
14 | 14 | ||
15 | module GSL ( | 15 | module GSL ( |
16 | 16 | module GSL.Integration | |
17 | module Data.Packed.Vector, | 17 | , module GSL.Differentiation |
18 | module Data.Packed.Matrix, | 18 | , module GSL.Fourier |
19 | --module Data.Packed.Tensor, | 19 | , module GSL.Polynomials |
20 | module LinearAlgebra.Algorithms, | 20 | , module GSL.Minimization |
21 | module LAPACK, | 21 | , module GSL.Special |
22 | module GSL.Integration, | 22 | , module Complex |
23 | module GSL.Differentiation, | ||
24 | module GSL.Fourier, | ||
25 | module GSL.Polynomials, | ||
26 | module GSL.Minimization, | ||
27 | module GSL.Matrix, | ||
28 | module GSL.Compat, | ||
29 | module Data.Packed.Plot, | ||
30 | module Complex, | ||
31 | |||
32 | setErrorHandlerOff | ||
33 | |||
34 | ) where | 23 | ) where |
35 | 24 | ||
36 | import Data.Packed.Vector hiding (constant) | ||
37 | import Data.Packed.Matrix hiding ((><)) | ||
38 | import LinearAlgebra.Algorithms hiding (pnorm) | ||
39 | import LAPACK | ||
40 | import GSL.Integration | 25 | import GSL.Integration |
41 | import GSL.Differentiation | 26 | import GSL.Differentiation |
42 | import GSL.Special | 27 | import GSL.Special |
43 | import GSL.Fourier | 28 | import GSL.Fourier |
44 | import GSL.Polynomials | 29 | import GSL.Polynomials |
45 | import GSL.Minimization | 30 | import GSL.Minimization |
46 | import GSL.Matrix | ||
47 | import GSL.Compat | ||
48 | import Data.Packed.Plot | ||
49 | import Complex | 31 | import Complex |
50 | import GSL.Special(setErrorHandlerOff) | 32 | import GSL.Special |