diff options
Diffstat (limited to 'lib/LinearAlgebra.hs')
-rw-r--r-- | lib/LinearAlgebra.hs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/LinearAlgebra.hs b/lib/LinearAlgebra.hs index a271592..d8f44b4 100644 --- a/lib/LinearAlgebra.hs +++ b/lib/LinearAlgebra.hs | |||
@@ -8,28 +8,22 @@ Maintainer : Alberto Ruiz (aruiz at um dot es) | |||
8 | Stability : provisional | 8 | Stability : provisional |
9 | Portability : uses ffi | 9 | Portability : uses ffi |
10 | 10 | ||
11 | Some linear algebra algorithms, implemented by means of BLAS, LAPACK or GSL. | 11 | Basic matrix computations implemented by BLAS, LAPACK and GSL. |
12 | 12 | ||
13 | -} | 13 | -} |
14 | ----------------------------------------------------------------------------- | 14 | ----------------------------------------------------------------------------- |
15 | module LinearAlgebra ( | 15 | module LinearAlgebra ( |
16 | module Data.Packed.Vector, | 16 | module Data.Packed.Vector, |
17 | module Data.Packed.Matrix, | 17 | module Data.Packed.Matrix, |
18 | module LinearAlgebra.Linear, | ||
19 | module LinearAlgebra.Instances, | 18 | module LinearAlgebra.Instances, |
20 | module LinearAlgebra.Interface, | 19 | module LinearAlgebra.Interface, |
21 | module LAPACK, | ||
22 | module GSL.Matrix, | ||
23 | module LinearAlgebra.Algorithms, | 20 | module LinearAlgebra.Algorithms, |
24 | module Complex | 21 | module Complex |
25 | ) where | 22 | ) where |
26 | 23 | ||
27 | import LinearAlgebra.Linear | ||
28 | import LinearAlgebra.Instances | 24 | import LinearAlgebra.Instances |
29 | import LinearAlgebra.Interface | 25 | import LinearAlgebra.Interface |
30 | import LinearAlgebra.Algorithms | 26 | import LinearAlgebra.Algorithms |
31 | import LAPACK | ||
32 | import GSL.Matrix | ||
33 | import Data.Packed.Matrix | 27 | import Data.Packed.Matrix |
34 | import Data.Packed.Vector | 28 | import Data.Packed.Vector |
35 | import Complex \ No newline at end of file | 29 | import Complex \ No newline at end of file |