From f10cdab8ffeb93b3d36fe8140321c8a94ceb4825 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 4 Mar 2019 20:53:12 -0500 Subject: [PATCH] src/Tetrahedron.hs: make an import list explicit. --- src/Tetrahedron.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 = -- 2.43.2