MLPACK  1.0.8
no_constraint.hpp
Go to the documentation of this file.
1 
22 #ifndef __MLPACK_METHODS_GMM_NO_CONSTRAINT_HPP
23 #define __MLPACK_METHODS_GMM_NO_CONSTRAINT_HPP
24 
25 #include <mlpack/core.hpp>
26 
27 namespace mlpack {
28 namespace gmm {
29 
36 {
37  public:
39  static void ApplyConstraint(const arma::mat& /* covariance */) { }
40 };
41 
42 }; // namespace gmm
43 }; // namespace mlpack
44 
45 #endif