diff options
Diffstat (limited to 'packages/base')
-rw-r--r-- | packages/base/hmatrix.cabal | 2 | ||||
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Compat.hs | 25 |
2 files changed, 1 insertions, 26 deletions
diff --git a/packages/base/hmatrix.cabal b/packages/base/hmatrix.cabal index 8f6b04b..a92409b 100644 --- a/packages/base/hmatrix.cabal +++ b/packages/base/hmatrix.cabal | |||
@@ -47,7 +47,7 @@ library | |||
47 | Numeric.LinearAlgebra.Devel | 47 | Numeric.LinearAlgebra.Devel |
48 | Numeric.LinearAlgebra.Data | 48 | Numeric.LinearAlgebra.Data |
49 | 49 | ||
50 | Numeric.LinearAlgebra.Compat | 50 | -- Numeric.LinearAlgebra.Compat |
51 | 51 | ||
52 | 52 | ||
53 | other-modules: Data.Packed.Internal, | 53 | other-modules: Data.Packed.Internal, |
diff --git a/packages/base/src/Numeric/LinearAlgebra/Compat.hs b/packages/base/src/Numeric/LinearAlgebra/Compat.hs deleted file mode 100644 index 7b43365..0000000 --- a/packages/base/src/Numeric/LinearAlgebra/Compat.hs +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | ----------------------------------------------------------------------------- | ||
2 | {- | | ||
3 | Module : Numeric.LinearAlgebra.Compat | ||
4 | Copyright : (c) Alberto Ruiz 2006-14 | ||
5 | License : BSD3 | ||
6 | Maintainer : Alberto Ruiz | ||
7 | Stability : provisional | ||
8 | |||
9 | -} | ||
10 | ----------------------------------------------------------------------------- | ||
11 | {-# OPTIONS_HADDOCK hide #-} | ||
12 | |||
13 | module Numeric.LinearAlgebra.Compat ( | ||
14 | module Numeric.Container, | ||
15 | module Numeric.LinearAlgebra.Algorithms, | ||
16 | meanCov | ||
17 | ) where | ||
18 | |||
19 | import Numeric.Container | ||
20 | import Numeric.LinearAlgebra.Algorithms | ||
21 | import Numeric.Matrix() | ||
22 | import Numeric.Vector() | ||
23 | import Numeric.LinearAlgebra.Util(meanCov) | ||
24 | |||
25 | |||