[mlpack-svn] r15295 - mlpack/trunk/src/mlpack/methods/neighbor_search

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Mon Jun 24 07:34:50 EDT 2013


Author: marcus
Date: 2013-06-24 07:34:49 -0400 (Mon, 24 Jun 2013)
New Revision: 15295

Modified:
   mlpack/trunk/src/mlpack/methods/neighbor_search/allknn_main.cpp
Log:
Fix ambiguous match: option -s matches --seed and --single_mode.

Modified: mlpack/trunk/src/mlpack/methods/neighbor_search/allknn_main.cpp
===================================================================
--- mlpack/trunk/src/mlpack/methods/neighbor_search/allknn_main.cpp	2013-06-24 03:41:58 UTC (rev 15294)
+++ mlpack/trunk/src/mlpack/methods/neighbor_search/allknn_main.cpp	2013-06-24 11:34:49 UTC (rev 15295)
@@ -54,7 +54,7 @@
 PARAM_INT("leaf_size", "Leaf size for tree building.", "l", 20);
 PARAM_FLAG("naive", "If true, O(n^2) naive mode is used for computation.", "N");
 PARAM_FLAG("single_mode", "If true, single-tree search is used (as opposed to "
-    "dual-tree search).", "s");
+    "dual-tree search).", "S");
 PARAM_FLAG("cover_tree", "If true, use cover trees to perform the search "
     "(experimental, may be slow).", "c");
 PARAM_FLAG("random_basis", "Before tree-building, project the data onto a "




More information about the mlpack-svn mailing list