diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-06-05 16:37:30 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-06-05 16:37:30 +0200 |
commit | 2dae75e9d2b08a23945e936dcd5244b7f0c46107 (patch) | |
tree | ee58334002e57aa0b9b75d97e979db7499252264 /packages/base | |
parent | 379f6a9855a36979c0670a3f89b6c7202836369c (diff) |
move chain
Diffstat (limited to 'packages/base')
-rw-r--r-- | packages/base/src/Internal/Chain.hs (renamed from packages/base/src/Numeric/Chain.hs) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/base/src/Numeric/Chain.hs b/packages/base/src/Internal/Chain.hs index 64c09c0..fa518d1 100644 --- a/packages/base/src/Numeric/Chain.hs +++ b/packages/base/src/Internal/Chain.hs | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | ----------------------------------------------------------------------------- | 3 | ----------------------------------------------------------------------------- |
4 | -- | | 4 | -- | |
5 | -- Module : Numeric.Chain | 5 | -- Module : Internal.Chain |
6 | -- Copyright : (c) Vivian McPhail 2010 | 6 | -- Copyright : (c) Vivian McPhail 2010 |
7 | -- License : BSD3 | 7 | -- License : BSD3 |
8 | -- | 8 | -- |
@@ -16,14 +16,14 @@ | |||
16 | 16 | ||
17 | {-# LANGUAGE FlexibleContexts #-} | 17 | {-# LANGUAGE FlexibleContexts #-} |
18 | 18 | ||
19 | module Numeric.Chain ( | 19 | module Internal.Chain ( |
20 | optimiseMult, | 20 | optimiseMult, |
21 | ) where | 21 | ) where |
22 | 22 | ||
23 | import Data.Maybe | 23 | import Data.Maybe |
24 | 24 | ||
25 | import Data.Packed.Matrix | 25 | import Internal.Matrix hiding (order) |
26 | import Data.Packed.Internal.Numeric | 26 | import Internal.Numeric |
27 | 27 | ||
28 | import qualified Data.Array.IArray as A | 28 | import qualified Data.Array.IArray as A |
29 | 29 | ||