[mlpack-svn] r15915 - 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:24:24 EDT 2013


Author: rcurtin
Date: Thu Oct  3 13:24:23 2013
New Revision: 15915

Log:
This is premature; wait for this until later.


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:24:23 2013
@@ -217,6 +217,11 @@
   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