]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Import cleanup in Values.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 16 Apr 2015 01:37:21 +0000 (21:37 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 16 Apr 2015 01:37:21 +0000 (21:37 -0400)
src/Values.hs

index 7fc577529f9ccdd2ce0fe1fc85cf14d8744e1e21..e21bacf1e906c553e3bda167e9fea3947d4ba8ff 100644 (file)
@@ -7,24 +7,20 @@ module Values (
   dims,
   empty3d,
   idx,
-  zoom_shape
-  )
+  zoom_shape )
 where
 
 import Data.Array.Repa (
   Array, U,
-  Z(..),
-  (:.)(..),
+  Z( Z ),
+  (:.)( (:.) ),
   DIM2,
   DIM3,
   extent,
   fromListUnboxed,
-  unsafeIndex,
-  )
+  unsafeIndex )
 
-import System.FilePath ()
-
-import ScaleFactor (ScaleFactor)
+import ScaleFactor ( ScaleFactor )
 
 
 type Values sh = Array U sh Double