From 76afaae38e52046f23f00efd6405e0d7c716954a Mon Sep 17 00:00:00 2001 From: hasufell Date: Fri, 14 Nov 2014 21:25:25 +0100 Subject: [PATCH] ALGO: export constructors and Zipper in RangeSearch --- Algorithms/RangeSearch/Core.hs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Algorithms/RangeSearch/Core.hs b/Algorithms/RangeSearch/Core.hs index 90b3a76..e33d2b2 100644 --- a/Algorithms/RangeSearch/Core.hs +++ b/Algorithms/RangeSearch/Core.hs @@ -8,9 +8,10 @@ module Algorithms.RangeSearch.Core lookupByPath', rootNode, testArr, - Orient, - Quad, - QuadTree) + Orient(North,East,West,South), + Quad(NW,NE,SW,SE), + QuadTree, + Zipper) where import Algebra.VectorTypes