Merge VectorTypes.hs into Vector.hs

This commit is contained in:
2014-12-03 21:41:00 +01:00
parent 9d6af63b46
commit 3c1a34e4af
10 changed files with 15 additions and 27 deletions

View File

@@ -3,7 +3,6 @@
module Algorithms.GrahamScan where
import Algebra.Vector
import Algebra.VectorTypes
import MyPrelude

View File

@@ -16,7 +16,6 @@ module Algorithms.KDTree (kdTree
where
import Algebra.VectorTypes
import Algebra.Vector
import Data.Maybe (fromJust, catMaybes)
import Data.Tree

View File

@@ -2,7 +2,6 @@ module Algorithms.PolygonIntersection where
import Algebra.Vector
import Algebra.VectorTypes
import Control.Applicative
import Data.Dequeue (BankersDequeue)
import qualified Data.Dequeue as Q

View File

@@ -16,7 +16,6 @@ module Algorithms.QuadTree
QTZipper)
where
import Algebra.VectorTypes
import Algebra.Vector
import Data.Foldable (foldlM)
import Data.List (partition)