ALGO: don't export all functions in KDTree

This commit is contained in:
2014-11-29 23:51:41 +01:00
parent 9867d25c4a
commit 8cf9d93580

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