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

index 632a7f4bd7370d2867fd2af61bf528233661a985..62b861cea848a7947790b2346de514f12cd07b8d 100644 (file)
@@ -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 )