[mlpack-svn] r10863 - mlpack/trunk/src/mlpack/core/tree

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Fri Dec 16 15:14:10 EST 2011


Author: vlad321
Date: 2011-12-16 15:14:10 -0500 (Fri, 16 Dec 2011)
New Revision: 10863

Modified:
   mlpack/trunk/src/mlpack/core/tree/periodichrectbound_impl.hpp
Log:
Removed the extra print statements that I forgot in there.


Modified: mlpack/trunk/src/mlpack/core/tree/periodichrectbound_impl.hpp
===================================================================
--- mlpack/trunk/src/mlpack/core/tree/periodichrectbound_impl.hpp	2011-12-16 20:11:14 UTC (rev 10862)
+++ mlpack/trunk/src/mlpack/core/tree/periodichrectbound_impl.hpp	2011-12-16 20:14:10 UTC (rev 10863)
@@ -323,14 +323,11 @@
       double tempMax;
       double sum = 0;
 
-      std::cout << point3[i] << "\t";
       double v = fabs(std::max(point3[i] - bounds_[i].Lo(),
                              bounds_[i].Hi() - point3[i]));
-      std::cout << v << "\t";
       sum += pow(v, (double) t_pow);
 
       tempMax = pow(sum, 2.0 / (double) t_pow) / 4.0;
-      std::cout << tempMax << "\n";
 
       if (tempMax > max)
         max = tempMax;




More information about the mlpack-svn mailing list