]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/FunctionValues.hs
Clean up imports/exports.
[spline3.git] / src / FunctionValues.hs
index 74e212386a77b535b42c290b5f52180f63ca207a..b1fede7a414af4af42f9eb374e798786ac2e4366 100644 (file)
@@ -1,7 +1,7 @@
 -- | The FunctionValues module contains the 'FunctionValues' type and
 --   the functions used to manipulate it.
 module FunctionValues (
-  FunctionValues,
+  FunctionValues(..),
   empty_values,
   eval,
   make_values,
@@ -13,7 +13,7 @@ module FunctionValues (
 where
 
 import Prelude hiding (LT)
-import Test.HUnit
+import Test.HUnit (Assertion)
 import Test.Framework (Test, testGroup)
 import Test.Framework.Providers.HUnit (testCase)
 import Test.Framework.Providers.QuickCheck2 (testProperty)