ALGO: rename wrongly named RangeSearch to QuadTree

This commit is contained in:
hasufell 2014-11-15 14:24:24 +01:00
parent 333e2f54b6
commit 0b3c7d2100
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
7 changed files with 5 additions and 5 deletions

View File

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

View File

@ -67,7 +67,7 @@ executable Gtk
Algorithms.ConvexHull.GrahamScan Algorithms.ConvexHull.GrahamScan
QueueEx QueueEx
Algorithms.PolygonIntersection.Core Algorithms.PolygonIntersection.Core
Algorithms.RangeSearch.QuadTree Algorithms.QuadTree.QuadTree
-- LANGUAGE extensions used by modules in this package. -- LANGUAGE extensions used by modules in this package.
-- other-extensions: -- other-extensions:
@ -111,7 +111,7 @@ executable Gif
Algorithms.ConvexHull.GrahamScan Algorithms.ConvexHull.GrahamScan
QueueEx QueueEx
Algorithms.PolygonIntersection.Core Algorithms.PolygonIntersection.Core
Algorithms.RangeSearch.QuadTree Algorithms.QuadTree.QuadTree
-- LANGUAGE extensions used by modules in this package. -- LANGUAGE extensions used by modules in this package.
-- other-extensions: -- other-extensions:

View File

@ -4,7 +4,7 @@ module Graphics.Diagram.Plotter where
import Algebra.VectorTypes import Algebra.VectorTypes
import Algorithms.ConvexHull.GrahamScan import Algorithms.ConvexHull.GrahamScan
import Algorithms.RangeSearch.QuadTree import Algorithms.QuadTree.QuadTree
import Algorithms.PolygonIntersection.Core import Algorithms.PolygonIntersection.Core
import Data.Maybe import Data.Maybe
import Data.Monoid import Data.Monoid

View File

@ -4,7 +4,7 @@ module Parser.PathParser where
import Control.Applicative import Control.Applicative
import Parser.Core import Parser.Core
import Algorithms.RangeSearch.QuadTree (Quad(NW, NE, SW, SE), Orient(North, South, West, East)) import Algorithms.QuadTree.QuadTree (Quad(NW, NE, SW, SE), Orient(North, South, West, East))
-- |Parse a string such as "ne, n, sw, e" into -- |Parse a string such as "ne, n, sw, e" into