]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/FunctionValues.hs
src/FunctionValues.hs: use explicit Prelude imports.
[spline3.git] / 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 )