]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
src/Cube.hs: use explicit Prelude imports.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 5 Mar 2019 15:53:11 +0000 (10:53 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 5 Mar 2019 15:53:11 +0000 (10:53 -0500)
src/Cube.hs

index 552b141e2a2f597ce7669baa9e181259e2979a96..4992851f3f7b3f7a3358e33852b53730c9269961 100644 (file)
@@ -20,7 +20,29 @@ import qualified Data.Vector as V (
   singleton,
   snoc,
   unsafeIndex)
-import Prelude hiding ( LT )
+import Prelude(
+  Bool,
+  Double,
+  Int,
+  Eq( (==) ),
+  Fractional( (/) ),
+  Maybe,
+  Num( (+), (-), (*) ),
+  Ord( (>=), (<=) ),
+  Show( show ),
+  ($),
+  (.),
+  (&&),
+  (++),
+  abs,
+  all,
+  and,
+  fromIntegral,
+  head,
+  map,
+  otherwise,
+  return,
+  tail )
 import Test.Tasty ( TestTree, testGroup )
 import Test.Tasty.QuickCheck (
   Arbitrary( arbitrary ),