[mlpack-svn] r16366 - mlpack/trunk/src/mlpack/tests

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Mar 11 14:43:16 EDT 2014


Author: rcurtin
Date: Tue Mar 11 14:43:15 2014
New Revision: 16366

Log:
Oops, use single-tree for the second iteration.


Modified:
   mlpack/trunk/src/mlpack/tests/allknn_test.cpp

Modified: mlpack/trunk/src/mlpack/tests/allknn_test.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/tests/allknn_test.cpp	(original)
+++ mlpack/trunk/src/mlpack/tests/allknn_test.cpp	Tue Mar 11 14:43:15 2014
@@ -203,7 +203,7 @@
         allknn = new AllkNN(tree, dataMutable, false);
         break;
       case 1: // Use the single-tree method.
-        allknn = new AllkNN(tree, dataMutable, false);
+        allknn = new AllkNN(tree, dataMutable, true);
         break;
       case 2: // Use the naive method.
         allknn = new AllkNN(dataMutable, true);



More information about the mlpack-svn mailing list