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

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Oct 9 17:04:45 EDT 2014


Author: rcurtin
Date: Thu Oct  9 17:04:44 2014
New Revision: 17228

Log:
Refactor for API change... forgot to check this one in.


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

Modified: mlpack/trunk/src/mlpack/tests/to_string_test.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/tests/to_string_test.cpp	(original)
+++ mlpack/trunk/src/mlpack/tests/to_string_test.cpp	Thu Oct  9 17:04:44 2014
@@ -356,7 +356,7 @@
 
 BOOST_AUTO_TEST_CASE(KMeansString)
 {
-  mlpack::kmeans::KMeans<metric::ManhattanDistance> d(100, 4.0);
+  mlpack::kmeans::KMeans<metric::ManhattanDistance> d(100);
   Log::Debug << d;
   std::string s = d.ToString();
   BOOST_REQUIRE_NE(s, "");



More information about the mlpack-svn mailing list