From: Michael Orlitzky Date: Tue, 5 Mar 2019 15:47:47 +0000 (-0500) Subject: src/FunctionValues.hs: use explicit Prelude imports. X-Git-Tag: 1.0.1~10 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=1a5c3a7d50c4d5692f62791219d3fbf37af133ba src/FunctionValues.hs: use explicit Prelude imports. --- diff --git a/src/FunctionValues.hs b/src/FunctionValues.hs index 632a7f4..62b861c 100644 --- a/src/FunctionValues.hs +++ b/src/FunctionValues.hs @@ -17,7 +17,19 @@ module FunctionValues ( value_at ) where -import Prelude hiding ( LT ) +import Prelude( + Bool, + Double, + Eq( (==) ), + Fractional( (/) ), + Int, + Num( (+), (-), (*) ), + Ord ( (>=), (<) ), + Show, + (&&), + and, + not, + return ) import Test.Tasty ( TestTree, testGroup ) import Test.Tasty.HUnit ( Assertion, testCase ) import Test.Tasty.QuickCheck ( Arbitrary( arbitrary ), choose, testProperty )