Restructure Algorithms subdir and module names

No subdirs in Algorithms, just the module files
This commit is contained in:
2014-12-03 21:26:35 +01:00
parent f1f3f20a26
commit 73e1673c63
15 changed files with 31 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
{-# OPTIONS_HADDOCK ignore-exports #-}
module Algorithms.ConvexHull.GrahamScan where
module Algorithms.GrahamScan where
import Algebra.Vector
import Algebra.VectorTypes

View File

@@ -1,18 +1,18 @@
{-# OPTIONS_HADDOCK ignore-exports #-}
module Algorithms.KDTree.KDTree (kdTree
, kdFoldl
, kdFoldr
, kdTreeToRoseTree
, rangeSearch
, getValS
, isLeaf
, getVal
, getDirection
, goLeft
, goRight
, Direction(Vertical, Horizontal)
, KDTree(KTNil, KTNode))
module Algorithms.KDTree (kdTree
, kdFoldl
, kdFoldr
, kdTreeToRoseTree
, rangeSearch
, getValS
, isLeaf
, getVal
, getDirection
, goLeft
, goRight
, Direction(Vertical, Horizontal)
, KDTree(KTNil, KTNode))
where

View File

@@ -1,4 +1,4 @@
module Algorithms.PolygonIntersection.Core where
module Algorithms.PolygonIntersection where
import Algebra.Vector

View File

@@ -1,4 +1,4 @@
module Algorithms.QuadTree.QuadTree
module Algorithms.QuadTree
(quadTree,
quadTreeSquares,
qtFoldl,