[mlpack-svn] r16184 - mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Jan 28 15:35:59 EST 2014


Author: birm
Date: Tue Jan 28 15:35:59 2014
New Revision: 16184

Log:
Fixed my own error in ToString of AugLagrangian


Modified:
   mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_impl.hpp

Modified: mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_impl.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_impl.hpp	(original)
+++ mlpack/trunk/src/mlpack/core/optimizers/aug_lagrangian/aug_lagrangian_impl.hpp	Tue Jan 28 15:35:59 2014
@@ -55,8 +55,8 @@
   std::ostringstream convert;
   convert << "AugLagrangian [" << this << "]" << std::endl;
   // Fix this! Why Only log? Ostream is lonely.
-  Log::Debug  << "Function to be Oprimized: " << function << std::endl;
-  convert << "L-BFGS Selected: " << lbfgs << std::endl;
+  //Log::Debug  << "Function to be Oprimized: " << function << std::endl;
+  //Log::Debug << "L-BFGS Selected: " << lbfgs << std::endl;
   return convert.str();
 }
 



More information about the mlpack-svn mailing list