00001 00022 #ifndef __MLPACK_METHODS_GMM_NO_CONSTRAINT_HPP 00023 #define __MLPACK_METHODS_GMM_NO_CONSTRAINT_HPP 00024 00025 #include <mlpack/core.hpp> 00026 00027 namespace mlpack { 00028 namespace gmm { 00029 00035 class NoConstraint 00036 { 00037 public: 00039 static void ApplyConstraint(const arma::mat& /* covariance */) { } 00040 }; 00041 00042 }; // namespace gmm 00043 }; // namespace mlpack 00044 00045 #endif