diff options
author | Peter Carbonetto | 2017-05-27 16:07:07 -0500 |
---|---|---|
committer | Peter Carbonetto | 2017-05-27 16:07:07 -0500 |
commit | 338bf7b7db8805515597d9e2d4b5dcbe2e40dfd1 (patch) | |
tree | ee0956354916c7795a5c2b656c4ff5405f09271f /src/Eigen/LeastSquares | |
parent | 94b4437dba1bd0e2767a73d0b79c5da9f393a1e3 (diff) | |
download | pangemma-338bf7b7db8805515597d9e2d4b5dcbe2e40dfd1.tar.gz |
Removed src/Eigen; instead, Eigen C++ library is downloaded separately. See Issue #42 for tests performed.
Diffstat (limited to 'src/Eigen/LeastSquares')
-rw-r--r-- | src/Eigen/LeastSquares | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/Eigen/LeastSquares b/src/Eigen/LeastSquares deleted file mode 100644 index 35137c2..0000000 --- a/src/Eigen/LeastSquares +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef EIGEN_REGRESSION_MODULE_H -#define EIGEN_REGRESSION_MODULE_H - -#ifndef EIGEN2_SUPPORT -#error LeastSquares is only available in Eigen2 support mode (define EIGEN2_SUPPORT) -#endif - -// exclude from normal eigen3-only documentation -#ifdef EIGEN2_SUPPORT - -#include "Core" - -#include "src/Core/util/DisableStupidWarnings.h" - -#include "Eigenvalues" -#include "Geometry" - -/** \defgroup LeastSquares_Module LeastSquares module - * This module provides linear regression and related features. - * - * \code - * #include <Eigen/LeastSquares> - * \endcode - */ - -#include "src/Eigen2Support/LeastSquares.h" - -#include "src/Core/util/ReenableStupidWarnings.h" - -#endif // EIGEN2_SUPPORT - -#endif // EIGEN_REGRESSION_MODULE_H |