Remove fake functions that should only be specific to the kd-tree.

This commit is contained in:
Ryan Curtin
2013-10-03 17:22:14 +00:00
parent bc3c0f37b6
commit cc4e988b63
@@ -217,11 +217,6 @@ class CoverTree
size_t Point(const size_t) const { return point; }
// Fake
CoverTree* Left() const { return NULL; }
CoverTree* Right() const { return NULL; }
size_t Begin() const { return 0; }
size_t Count() const { return 0; }
size_t End() const { return 0; }
bool IsLeaf() const { return (children.size() == 0); }
size_t NumPoints() const { return 1; }