From: Michael Orlitzky Date: Tue, 5 Mar 2019 01:53:12 +0000 (-0500) Subject: src/Tetrahedron.hs: make an import list explicit. X-Git-Tag: 1.0.1~31 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=f10cdab8ffeb93b3d36fe8140321c8a94ceb4825 src/Tetrahedron.hs: make an import list explicit. --- diff --git a/src/Tetrahedron.hs b/src/Tetrahedron.hs index edf450c..4bc8658 100644 --- a/src/Tetrahedron.hs +++ b/src/Tetrahedron.hs @@ -19,7 +19,7 @@ import qualified Data.Vector as V ( sum ) import Test.Tasty ( TestTree, testGroup ) import Test.Tasty.HUnit ( Assertion, assertEqual, testCase ) import Test.Tasty.QuickCheck ( - Arbitrary(..), + Arbitrary( arbitrary ), Gen, Property, (==>), @@ -28,7 +28,7 @@ import Test.Tasty.QuickCheck ( import Comparisons ( (~=) ) import FunctionValues ( FunctionValues(..), empty_values ) import Misc ( factorial ) -import Point ( Point(..), scale ) +import Point ( Point(Point), scale ) import RealFunction ( RealFunction, cmult, fexp ) data Tetrahedron =