diff options
Diffstat (limited to 'lib/LinearAlgebra.hs')
-rw-r--r-- | lib/LinearAlgebra.hs | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/lib/LinearAlgebra.hs b/lib/LinearAlgebra.hs index d8f44b4..d6ef647 100644 --- a/lib/LinearAlgebra.hs +++ b/lib/LinearAlgebra.hs | |||
@@ -13,17 +13,15 @@ Basic matrix computations implemented by BLAS, LAPACK and GSL. | |||
13 | -} | 13 | -} |
14 | ----------------------------------------------------------------------------- | 14 | ----------------------------------------------------------------------------- |
15 | module LinearAlgebra ( | 15 | module LinearAlgebra ( |
16 | module Data.Packed.Vector, | 16 | module Data.Packed, |
17 | module Data.Packed.Matrix, | 17 | module LinearAlgebra.Linear, |
18 | module LinearAlgebra.Instances, | ||
19 | module LinearAlgebra.Interface, | ||
20 | module LinearAlgebra.Algorithms, | 18 | module LinearAlgebra.Algorithms, |
21 | module Complex | 19 | module LinearAlgebra.Instances, |
20 | module LinearAlgebra.Interface | ||
22 | ) where | 21 | ) where |
23 | 22 | ||
23 | import Data.Packed | ||
24 | import LinearAlgebra.Linear | ||
25 | import LinearAlgebra.Algorithms | ||
24 | import LinearAlgebra.Instances | 26 | import LinearAlgebra.Instances |
25 | import LinearAlgebra.Interface | 27 | import LinearAlgebra.Interface |
26 | import LinearAlgebra.Algorithms | ||
27 | import Data.Packed.Matrix | ||
28 | import Data.Packed.Vector | ||
29 | import Complex \ No newline at end of file | ||