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

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Dec 1 23:09:21 EST 2011


Author: rcurtin
Date: 2011-12-01 23:09:20 -0500 (Thu, 01 Dec 2011)
New Revision: 10501

Modified:
   mlpack/trunk/src/mlpack/tests/allkfn_test.cpp
Log:
Accidentally committed this minor change.


Modified: mlpack/trunk/src/mlpack/tests/allkfn_test.cpp
===================================================================
--- mlpack/trunk/src/mlpack/tests/allkfn_test.cpp	2011-12-02 02:59:50 UTC (rev 10500)
+++ mlpack/trunk/src/mlpack/tests/allkfn_test.cpp	2011-12-02 04:09:20 UTC (rev 10501)
@@ -44,13 +44,13 @@
     arma::mat data_mutable = data;
     switch (i)
     {
-      case 2: // Use the dual-tree method.
+      case 0: // Use the dual-tree method.
         allkfn = new AllkFN(data_mutable, false, false, 1);
         break;
       case 1: // Use the single-tree method.
         allkfn = new AllkFN(data_mutable, false, true, 1);
         break;
-      case 0: // Use the naive method.
+      case 2: // Use the naive method.
         allkfn = new AllkFN(data_mutable, true);
         break;
     }




More information about the mlpack-svn mailing list