[mlpack-svn] r16781 - mlpack/trunk/src/mlpack/methods/lars

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Jul 8 07:48:32 EDT 2014


Author: rcurtin
Date: Tue Jul  8 07:48:32 2014
New Revision: 16781

Log:
Don't include <armadillo> explicitly, because <mlpack/core.hpp> does that
already.


Modified:
   mlpack/trunk/src/mlpack/methods/lars/lars.hpp

Modified: mlpack/trunk/src/mlpack/methods/lars/lars.hpp
==============================================================================
--- mlpack/trunk/src/mlpack/methods/lars/lars.hpp	(original)
+++ mlpack/trunk/src/mlpack/methods/lars/lars.hpp	Tue Jul  8 07:48:32 2014
@@ -19,7 +19,6 @@
 #ifndef __MLPACK_METHODS_LARS_LARS_HPP
 #define __MLPACK_METHODS_LARS_LARS_HPP
 
-#include <armadillo>
 #include <mlpack/core.hpp>
 
 namespace mlpack {
@@ -151,9 +150,9 @@
   //! Access the upper triangular cholesky factor
   const arma::mat& MatUtriCholFactor() const { return matUtriCholFactor; }
 
-  // Returns a string representation of this object. 
+  // Returns a string representation of this object.
   std::string ToString() const;
-  
+
  private:
   //! Gram matrix.
   arma::mat matGramInternal;



More information about the mlpack-svn mailing list