ALGO: don't export all functions in KDTree
This commit is contained in:
parent
9867d25c4a
commit
8cf9d93580
@ -1,6 +1,19 @@
|
|||||||
{-# OPTIONS_HADDOCK ignore-exports #-}
|
{-# 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
|
import Algebra.VectorTypes
|
||||||
|
Loading…
Reference in New Issue
Block a user