summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2015-06-05 16:37:30 +0200
committerAlberto Ruiz <aruiz@um.es>2015-06-05 16:37:30 +0200
commit2dae75e9d2b08a23945e936dcd5244b7f0c46107 (patch)
treeee58334002e57aa0b9b75d97e979db7499252264 /packages
parent379f6a9855a36979c0670a3f89b6c7202836369c (diff)
move chain
Diffstat (limited to 'packages')
-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
19module Numeric.Chain ( 19module Internal.Chain (
20 optimiseMult, 20 optimiseMult,
21 ) where 21 ) where
22 22
23import Data.Maybe 23import Data.Maybe
24 24
25import Data.Packed.Matrix 25import Internal.Matrix hiding (order)
26import Data.Packed.Internal.Numeric 26import Internal.Numeric
27 27
28import qualified Data.Array.IArray as A 28import qualified Data.Array.IArray as A
29 29