]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
4x, completely uncached.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 7 Sep 2011 01:39:14 +0000 (21:39 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 7 Sep 2011 01:39:14 +0000 (21:39 -0400)
src/Grid.hs
src/Main.hs
src/PolynomialArray.hs [deleted file]

index 893fe5c360d3f39c73a99ebab26d1320fd798815..fcdeb5e6246c9b8525424e9486938886e7aa929e 100644 (file)
@@ -27,9 +27,8 @@ import Cube (Cube(Cube),
 import Examples
 import FunctionValues
 import Point (Point)
-import PolynomialArray (PolynomialArray)
 import ScaleFactor
-import Tetrahedron (Tetrahedron, c, number, polynomial, v0, v1, v2, v3)
+import Tetrahedron (Tetrahedron, c, polynomial, v0, v1, v2, v3)
 import ThreeDimensional
 import Values (Values3D, dims, empty3d, zoom_shape)
 
@@ -133,15 +132,15 @@ find_containing_cube g p =
 
 
 {-# INLINE zoom_lookup #-}
-zoom_lookup :: Grid -> PolynomialArray -> ScaleFactor -> a -> (R.DIM3 -> Double)
-zoom_lookup g polynomials scale_factor _ =
-    zoom_result g polynomials scale_factor
+zoom_lookup :: Grid -> ScaleFactor -> a -> (R.DIM3 -> Double)
+zoom_lookup g scale_factor _ =
+    zoom_result g scale_factor
 
 
 {-# INLINE zoom_result #-}
-zoom_result :: Grid -> PolynomialArray -> ScaleFactor -> R.DIM3 -> Double
-zoom_result g polynomials (sfx, sfy, sfz) (R.Z R.:. m R.:. n R.:. o) =
-  (polynomials ! (i, j, k, (number t))) p
+zoom_result :: Grid -> ScaleFactor -> R.DIM3 -> Double
+zoom_result g (sfx, sfy, sfz) (R.Z R.:. m R.:. n R.:. o) =
+  f p
   where
     offset = (h g)/2
     m' = (fromIntegral m) / (fromIntegral sfx) - offset
@@ -150,15 +149,14 @@ zoom_result g polynomials (sfx, sfy, sfz) (R.Z R.:. m R.:. n R.:. o) =
     p  = (m', n', o') :: Point
     cube = find_containing_cube g p
     -- Figure out i,j,k without importing those functions.
-    Cube _ i j k _ _ = cube
     t = find_containing_tetrahedron cube p
-
+    f = polynomial t
     
-zoom :: Grid -> PolynomialArray -> ScaleFactor -> Values3D
-zoom g polynomials scale_factor
+zoom :: Grid -> ScaleFactor -> Values3D
+zoom g scale_factor
     | xsize == 0 || ysize == 0 || zsize == 0 = empty3d
     | otherwise =
-        R.force $ R.traverse arr transExtent (zoom_lookup g polynomials scale_factor)
+        R.force $ R.traverse arr transExtent (zoom_lookup g scale_factor)
           where
             arr = function_values g
             (xsize, ysize, zsize) = dims arr
index 4040276b6cd5c657d62588370a6f5a3228c6269e..8a1efdb76de21e6b94421e63e6ebd07630ff5990 100644 (file)
@@ -9,10 +9,7 @@ import Data.Array.Repa (
 
 import System.Environment (getArgs)
 
-import Cube (tetrahedron)
-import Grid (cube_at, make_grid, zoom)
-import PolynomialArray (make_polynomial_array)
-import Tetrahedron (polynomial)
+import Grid (make_grid, zoom)
 import Values (read_values_3d, write_values_1d)
 
 mri_shape :: DIM3
@@ -30,13 +27,5 @@ main = do
   mridata <- read_values_3d mri_shape in_file
 
   let g = make_grid 1 mridata
-  let polynomials = make_polynomial_array (255,255,0,23)
-        [ ((i,j,k,tet), polynomial t) | i <- [0..255],
-                                        j <- [0..255],
-                                        k <- [0],
-                                        tet <- [0..23],
-                                        let c = cube_at g i j k,
-                                        let t = tetrahedron c tet ]
-
-  let output = zoom g polynomials (8,8,1)
+  let output = zoom g (4,4,1)
   write_values_1d output out_file
diff --git a/src/PolynomialArray.hs b/src/PolynomialArray.hs
deleted file mode 100644 (file)
index 2cf96dd..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
--- | The PolynomialArray module contains one type, 'PolynomialArray',
---   and a smart constructor for it. The array is essentially a hash;
---   the unique keys can be thought of as a cube/tetrahedron pair, and
---   the associated value is the polynomial function over that
---   tetrahedron. Rather than define 'Ord' instances and a proper map,
---   we just use the indices i,j,k along with the tetrahedron number
---   as the keys.
-module PolynomialArray (
-  PolynomialArray,
-  make_polynomial_array
-  )
-where
-
-import RealFunction(RealFunction)
-import Point (Point)
-
-import Data.Array (Array, array)
-
-type PolynomialArray =
-    Array (Int,Int,Int,Int) (RealFunction Point)
-
-make_polynomial_array :: (Int, Int, Int, Int) ->
-                        [( (Int,Int,Int,Int), (RealFunction Point) )] ->
-                        PolynomialArray
-make_polynomial_array (max_i, max_j, max_k, max_tetrahedron_number) =
-  array ( (0,0,0,0), (max_i,max_j,max_k, max_tetrahedron_number) )