[mlpack-svn] r15913 - mlpack/trunk/src/mlpack/methods/gmm

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Thu Oct 3 11:23:02 EDT 2013


Author: rcurtin
Date: Thu Oct  3 11:23:02 2013
New Revision: 15913

Log:
What, how did I miss this?  I definitely built the test and checked it...


Modified:
   mlpack/trunk/src/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp

Modified: mlpack/trunk/src/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp	(original)
+++ mlpack/trunk/src/mlpack/methods/gmm/eigenvalue_ratio_constraint.hpp	Thu Oct  3 11:23:02 2013
@@ -28,7 +28,7 @@
    * be 1.  In addition, all other elements should be less than or equal to 1.
    */
   EigenvalueRatioConstraint(const arma::vec& ratios) :
-    ratios(ratios)
+      ratios(ratios)
   {
     // Check validity of ratios.
     if (std::abs(ratios[0] - 1.0) > 1e-20)
@@ -46,6 +46,7 @@
             << "element " << i << " of ratio vectors is negative and will "
             << "probably cause the covariance to be non-invertible..."
             << std::endl;
+    }
   }
 
   /**



More information about the mlpack-svn mailing list