ALGO: rename wrongly named RangeSearch to QuadTree
This commit is contained in:
parent
333e2f54b6
commit
0b3c7d2100
@ -1,4 +1,4 @@
|
||||
module Algorithms.RangeSearch.QuadTree
|
||||
module Algorithms.QuadTree.QuadTree
|
||||
(quadTree,
|
||||
quadTreeSquares,
|
||||
qtFoldl,
|
@ -67,7 +67,7 @@ executable Gtk
|
||||
Algorithms.ConvexHull.GrahamScan
|
||||
QueueEx
|
||||
Algorithms.PolygonIntersection.Core
|
||||
Algorithms.RangeSearch.QuadTree
|
||||
Algorithms.QuadTree.QuadTree
|
||||
|
||||
-- LANGUAGE extensions used by modules in this package.
|
||||
-- other-extensions:
|
||||
@ -111,7 +111,7 @@ executable Gif
|
||||
Algorithms.ConvexHull.GrahamScan
|
||||
QueueEx
|
||||
Algorithms.PolygonIntersection.Core
|
||||
Algorithms.RangeSearch.QuadTree
|
||||
Algorithms.QuadTree.QuadTree
|
||||
|
||||
-- LANGUAGE extensions used by modules in this package.
|
||||
-- other-extensions:
|
||||
|
@ -4,7 +4,7 @@ module Graphics.Diagram.Plotter where
|
||||
|
||||
import Algebra.VectorTypes
|
||||
import Algorithms.ConvexHull.GrahamScan
|
||||
import Algorithms.RangeSearch.QuadTree
|
||||
import Algorithms.QuadTree.QuadTree
|
||||
import Algorithms.PolygonIntersection.Core
|
||||
import Data.Maybe
|
||||
import Data.Monoid
|
||||
|
@ -4,7 +4,7 @@ module Parser.PathParser where
|
||||
|
||||
import Control.Applicative
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user