diff options
Diffstat (limited to 'packages/base')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Static/Internal.hs (renamed from packages/base/src/Numeric/LinearAlgebra/Static.hs) | 4 | ||||
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/tmpStatic.hs (renamed from packages/base/src/Numeric/HMatrix.hs) | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Static.hs b/packages/base/src/Numeric/LinearAlgebra/Static/Internal.hs index daf8d80..c9641d5 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Static.hs +++ b/packages/base/src/Numeric/LinearAlgebra/Static/Internal.hs | |||
@@ -14,14 +14,14 @@ | |||
14 | 14 | ||
15 | 15 | ||
16 | {- | | 16 | {- | |
17 | Module : Numeric.LinearAlgebra.Static | 17 | Module : Numeric.LinearAlgebra.Static.Internal |
18 | Copyright : (c) Alberto Ruiz 2006-14 | 18 | Copyright : (c) Alberto Ruiz 2006-14 |
19 | License : BSD3 | 19 | License : BSD3 |
20 | Stability : provisional | 20 | Stability : provisional |
21 | 21 | ||
22 | -} | 22 | -} |
23 | 23 | ||
24 | module Numeric.LinearAlgebra.Static where | 24 | module Numeric.LinearAlgebra.Static.Internal where |
25 | 25 | ||
26 | 26 | ||
27 | import GHC.TypeLits | 27 | import GHC.TypeLits |
diff --git a/packages/base/src/Numeric/HMatrix.hs b/packages/base/src/Numeric/LinearAlgebra/tmpStatic.hs index c88918f..4258d6b 100644 --- a/packages/base/src/Numeric/HMatrix.hs +++ b/packages/base/src/Numeric/LinearAlgebra/tmpStatic.hs | |||
@@ -16,8 +16,8 @@ | |||
16 | 16 | ||
17 | 17 | ||
18 | {- | | 18 | {- | |
19 | Module : Numeric.HMatrix | 19 | Module : Numeric.LinearAlgebra.Static |
20 | Copyright : (c) Alberto Ruiz 2006-14 | 20 | Copyright : (c) Alberto Ruiz 2014 |
21 | License : BSD3 | 21 | License : BSD3 |
22 | Stability : experimental | 22 | Stability : experimental |
23 | 23 | ||
@@ -25,7 +25,7 @@ Experimental interface with statically checked dimensions. | |||
25 | 25 | ||
26 | -} | 26 | -} |
27 | 27 | ||
28 | module Numeric.HMatrix( | 28 | module Numeric.LinearAlgebra.Static( |
29 | -- * Vector | 29 | -- * Vector |
30 | ℝ, R, | 30 | ℝ, R, |
31 | vec2, vec3, vec4, (&), (#), split, headTail, | 31 | vec2, vec3, vec4, (&), (#), split, headTail, |
@@ -65,7 +65,7 @@ import Numeric.LinearAlgebra.HMatrix hiding ( | |||
65 | qr) | 65 | qr) |
66 | import qualified Numeric.LinearAlgebra.HMatrix as LA | 66 | import qualified Numeric.LinearAlgebra.HMatrix as LA |
67 | import Data.Proxy(Proxy) | 67 | import Data.Proxy(Proxy) |
68 | import Numeric.LinearAlgebra.Static | 68 | import Numeric.LinearAlgebra.Static.Internal |
69 | import Control.Arrow((***)) | 69 | import Control.Arrow((***)) |
70 | 70 | ||
71 | 71 | ||