diff options
author | Vivian McPhail <haskell.vivian.mcphail@gmail.com> | 2010-08-29 10:49:48 +0000 |
---|---|---|
committer | Vivian McPhail <haskell.vivian.mcphail@gmail.com> | 2010-08-29 10:49:48 +0000 |
commit | 7422e52814e05eb3e74f82a0725eeafde8405adf (patch) | |
tree | 8b88642bb7cc8e87c16cf7c98c4f02fa680b4d90 | |
parent | ccff860bcd64a43a9144288a04d03e1366f80586 (diff) |
expose Numeric.LinearAlgebra.Instances
-rw-r--r-- | hmatrix.cabal | 2 | ||||
-rw-r--r-- | lib/Numeric/LinearAlgebra.hs | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal index 674f69d..146cf1a 100644 --- a/hmatrix.cabal +++ b/hmatrix.cabal | |||
@@ -99,6 +99,7 @@ library | |||
99 | Numeric.LinearAlgebra.LAPACK, | 99 | Numeric.LinearAlgebra.LAPACK, |
100 | Numeric.LinearAlgebra.Interface, | 100 | Numeric.LinearAlgebra.Interface, |
101 | Numeric.LinearAlgebra.Linear, | 101 | Numeric.LinearAlgebra.Linear, |
102 | Numeric.LinearAlgebra.Instances, | ||
102 | Numeric.LinearAlgebra.Algorithms, | 103 | Numeric.LinearAlgebra.Algorithms, |
103 | Graphics.Plot, | 104 | Graphics.Plot, |
104 | -- Data.Packed.Convert, | 105 | -- Data.Packed.Convert, |
@@ -110,7 +111,6 @@ library | |||
110 | Data.Packed.Internal.Signatures, | 111 | Data.Packed.Internal.Signatures, |
111 | Data.Packed.Internal.Vector, | 112 | Data.Packed.Internal.Vector, |
112 | Data.Packed.Internal.Matrix, | 113 | Data.Packed.Internal.Matrix, |
113 | Numeric.LinearAlgebra.Instances, | ||
114 | Numeric.GSL.Internal | 114 | Numeric.GSL.Internal |
115 | 115 | ||
116 | C-sources: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c, | 116 | C-sources: lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c, |
diff --git a/lib/Numeric/LinearAlgebra.hs b/lib/Numeric/LinearAlgebra.hs index e8a14d6..f3a4104 100644 --- a/lib/Numeric/LinearAlgebra.hs +++ b/lib/Numeric/LinearAlgebra.hs | |||
@@ -16,10 +16,12 @@ module Numeric.LinearAlgebra ( | |||
16 | module Data.Packed, | 16 | module Data.Packed, |
17 | module Numeric.LinearAlgebra.Algorithms, | 17 | module Numeric.LinearAlgebra.Algorithms, |
18 | module Numeric.LinearAlgebra.Interface, | 18 | module Numeric.LinearAlgebra.Interface, |
19 | module Numeric.LinearAlgebra.Linear | 19 | module Numeric.LinearAlgebra.Linear, |
20 | module Numeric.LinearAlgebra.Instances | ||
20 | ) where | 21 | ) where |
21 | 22 | ||
22 | import Data.Packed | 23 | import Data.Packed |
23 | import Numeric.LinearAlgebra.Algorithms | 24 | import Numeric.LinearAlgebra.Algorithms |
24 | import Numeric.LinearAlgebra.Interface | 25 | import Numeric.LinearAlgebra.Interface |
25 | import Numeric.LinearAlgebra.Linear | 26 | import Numeric.LinearAlgebra.Linear |
27 | import Numeric.LinearAlgebra.Instances | ||