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

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Wed Oct 2 20:11:27 EDT 2013


Author: rcurtin
Date: Wed Oct  2 20:11:27 2013
New Revision: 15906

Log:
Update name of constraint class.


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

Modified: mlpack/trunk/src/mlpack/tests/gmm_test.cpp
==============================================================================
--- mlpack/trunk/src/mlpack/tests/gmm_test.cpp	(original)
+++ mlpack/trunk/src/mlpack/tests/gmm_test.cpp	Wed Oct  2 20:11:27 2013
@@ -10,7 +10,7 @@
 #include <mlpack/methods/gmm/phi.hpp>
 
 #include <mlpack/methods/gmm/no_constraint.hpp>
-#include <mlpack/methods/gmm/positive_definite_covariance.hpp>
+#include <mlpack/methods/gmm/positive_definite_constraint.hpp>
 
 #include <boost/test/unit_test.hpp>
 #include "old_boost_test_definitions.hpp"
@@ -651,7 +651,7 @@
     arma::mat cov(elem, elem);
     cov.randu();
 
-    PositiveDefiniteCovariance::ApplyConstraint(cov);
+    PositiveDefiniteConstraint::ApplyConstraint(cov);
 
     BOOST_REQUIRE_GE((double) det(cov), 1e-50);
   }



More information about the mlpack-svn mailing list