From: Michael Orlitzky Date: Tue, 5 Mar 2019 15:53:11 +0000 (-0500) Subject: src/Cube.hs: use explicit Prelude imports. X-Git-Tag: 1.0.1~9 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=631e653921937fe597090b66316227c9da14be35 src/Cube.hs: use explicit Prelude imports. --- 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 ),