diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-05-22 20:49:31 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-05-22 20:49:31 +0200 |
commit | 109fa7d25779e331356bbe310755c10eddfeb235 (patch) | |
tree | a1454e096de099384e8b575019d045e16999a72e /packages/base | |
parent | 85af0a1d5ba2d1c03f05458f9689195e82f6ae7e (diff) |
remove compat
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 | |||