summaryrefslogtreecommitdiff
path: root/packages/base
diff options
context:
space:
mode:
Diffstat (limited to 'packages/base')
-rw-r--r--packages/base/hmatrix.cabal2
-rw-r--r--packages/base/src/Numeric/LinearAlgebra/Compat.hs25
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{- |
3Module : Numeric.LinearAlgebra.Compat
4Copyright : (c) Alberto Ruiz 2006-14
5License : BSD3
6Maintainer : Alberto Ruiz
7Stability : provisional
8
9-}
10-----------------------------------------------------------------------------
11{-# OPTIONS_HADDOCK hide #-}
12
13module Numeric.LinearAlgebra.Compat (
14 module Numeric.Container,
15 module Numeric.LinearAlgebra.Algorithms,
16 meanCov
17) where
18
19import Numeric.Container
20import Numeric.LinearAlgebra.Algorithms
21import Numeric.Matrix()
22import Numeric.Vector()
23import Numeric.LinearAlgebra.Util(meanCov)
24
25