ALGO: don't export all functions in KDTree

This commit is contained in:
hasufell 2014-11-29 23:51:41 +01:00
parent 9867d25c4a
commit 8cf9d93580
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 14 additions and 1 deletions

View File

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