mlpack  1.0.12
no_constraint.hpp
Go to the documentation of this file.
1 
14 #ifndef __MLPACK_METHODS_GMM_NO_CONSTRAINT_HPP
15 #define __MLPACK_METHODS_GMM_NO_CONSTRAINT_HPP
16 
17 #include <mlpack/core.hpp>
18 
19 namespace mlpack {
20 namespace gmm {
21 
28 {
29  public:
31  static void ApplyConstraint(const arma::mat& /* covariance */) { }
32 };
33 
34 }; // namespace gmm
35 }; // namespace mlpack
36 
37 #endif
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: load.hpp:23
This class enforces no constraint on the covariance matrix.
static void ApplyConstraint(const arma::mat &)
Do nothing, and do not modify the covariance matrix.