From 631e653921937fe597090b66316227c9da14be35 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 5 Mar 2019 10:53:11 -0500 Subject: [PATCH] src/Cube.hs: use explicit Prelude imports. --- src/Cube.hs | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/Cube.hs b/src/Cube.hs index 552b141..4992851 100644 --- a/src/Cube.hs +++ b/src/Cube.hs @@ -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 ), -- 2.43.2