From: Michael Orlitzky Date: Tue, 5 Mar 2019 04:21:52 +0000 (-0500) Subject: src/{Cube,FunctionValues}.hs: add explicit Cardinal imports. X-Git-Tag: 1.0.1~16 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=83ef0aaeae074756e4ee90d72d3e27e74e136061 src/{Cube,FunctionValues}.hs: add explicit Cardinal imports. --- diff --git a/src/Cube.hs b/src/Cube.hs index 5a70afc..8596b11 100644 --- a/src/Cube.hs +++ b/src/Cube.hs @@ -24,7 +24,8 @@ import Test.Tasty.QuickCheck ( choose, testProperty ) import Cardinal ( - Cardinal(..), + Cardinal(F, B, L, R, D, T, FL, FR, FD, FT, + BL, BR, BD, BT, LD, LT, RD, RT, I), ccwx, ccwy, ccwz, diff --git a/src/FunctionValues.hs b/src/FunctionValues.hs index 0d84801..dc1f0d0 100644 --- a/src/FunctionValues.hs +++ b/src/FunctionValues.hs @@ -20,7 +20,13 @@ import Test.Tasty.HUnit ( Assertion, testCase ) import Test.Tasty.QuickCheck ( Arbitrary( arbitrary ), choose, testProperty ) import Assertions ( assertTrue ) -import Cardinal ( Cardinal(..), cwx, cwy, cwz ) +import Cardinal ( + Cardinal(F, B, L, R, D, T, FL, FR, FD, FT, BL, BR, BD, BT, LD, LT, RD, + RT, FLD, FLT, FRD, FRT, BLD, BLT, BRD, BRT, I, Scalar, Sum, + Difference, Product, Quotient ), + cwx, + cwy, + cwz ) import Examples ( trilinear ) import Values ( Values3D, dims, idx )