]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
src/Grid.hs: define the Grid using "newtype" instead of "data".
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 5 Mar 2019 00:25:33 +0000 (19:25 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 5 Mar 2019 00:25:33 +0000 (19:25 -0500)
src/Grid.hs

index f9a59729554a9f12d72d9e384f332e024e858bdc..761fdce1b8c924e472bf0d40ce9baa1439cb43bb 100644 (file)
@@ -51,8 +51,8 @@ import Values ( Values3D, dims, empty3d, zoom_shape )
 --   values of the function at the grid points, which are distance h=1
 --   from one another in each direction (x,y,z).
 --
-data Grid = Grid { function_values :: Values3D }
-          deriving (Show)
+newtype Grid = Grid { function_values :: Values3D }
+                 deriving (Show)
 
 
 instance Arbitrary Grid where