[mlpack-svn] r15914 - mlpack/trunk/src/mlpack/core/tree/cover_tree

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Oct 3 13:22:15 EDT 2013


Author: rcurtin
Date: Thu Oct  3 13:22:14 2013
New Revision: 15914

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


Modified:
   mlpack/trunk/src/mlpack/core/tree/cover_tree/cover_tree.hpp

Modified: mlpack/trunk/src/mlpack/core/tree/cover_tree/cover_tree.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/tree/cover_tree/cover_tree.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/tree/cover_tree/cover_tree.hpp	Thu Oct  3 13:22:14 2013
@@ -217,11 +217,6 @@
   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; }
 



More information about the mlpack-svn mailing list