ALGO: rm obsolete test array

This commit is contained in:
hasufell 2014-11-15 03:55:52 +01:00
parent 3d42e7d62d
commit 5fa5afc073
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 0 additions and 13 deletions

View File

@ -8,7 +8,6 @@ module Algorithms.RangeSearch.QuadTree
lookupByPath',
getSquareByZipper,
rootNode,
testArr,
Orient(North,East,West,South),
Quad(NW,NE,SW,SE),
QuadTree,
@ -201,15 +200,3 @@ lookupByNeighbors :: [Orient] -> Zipper a -> Maybe (Zipper a)
lookupByNeighbors = flip (foldlM (flip findNeighbor))
testArr :: [PT]
testArr = [p2 (200.0, 450.0),
p2 (400.0, 350.0),
p2 (100.0, 300.0),
p2 (25.0 , 350.0),
p2 (225.0, 225.0),
p2 (400.0, 150.0),
p2 (300.0, 100.0),
p2 (300.0, 300.0),
p2 (300.0, 350.0),
p2 (50.0 , 450.0),
p2 (100.0, 25.0)]