about summary refs log tree commit diff
path: root/src/Eigen/SVD
diff options
context:
space:
mode:
authorPeter Carbonetto2017-05-27 16:07:07 -0500
committerPeter Carbonetto2017-05-27 16:07:07 -0500
commit338bf7b7db8805515597d9e2d4b5dcbe2e40dfd1 (patch)
treeee0956354916c7795a5c2b656c4ff5405f09271f /src/Eigen/SVD
parent94b4437dba1bd0e2767a73d0b79c5da9f393a1e3 (diff)
downloadpangemma-338bf7b7db8805515597d9e2d4b5dcbe2e40dfd1.tar.gz
Removed src/Eigen; instead, Eigen C++ library is downloaded separately. See Issue #42 for tests performed.
Diffstat (limited to 'src/Eigen/SVD')
-rw-r--r--src/Eigen/SVD37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/Eigen/SVD b/src/Eigen/SVD
deleted file mode 100644
index fd31001..0000000
--- a/src/Eigen/SVD
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef EIGEN_SVD_MODULE_H
-#define EIGEN_SVD_MODULE_H
-
-#include "QR"
-#include "Householder"
-#include "Jacobi"
-
-#include "src/Core/util/DisableStupidWarnings.h"
-
-/** \defgroup SVD_Module SVD module
-  *
-  *
-  *
-  * This module provides SVD decomposition for matrices (both real and complex).
-  * This decomposition is accessible via the following MatrixBase method:
-  *  - MatrixBase::jacobiSvd()
-  *
-  * \code
-  * #include <Eigen/SVD>
-  * \endcode
-  */
-
-#include "src/misc/Solve.h"
-#include "src/SVD/JacobiSVD.h"
-#if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT)
-#include "src/SVD/JacobiSVD_MKL.h"
-#endif
-#include "src/SVD/UpperBidiagonalization.h"
-
-#ifdef EIGEN2_SUPPORT
-#include "src/Eigen2Support/SVD.h"
-#endif
-
-#include "src/Core/util/ReenableStupidWarnings.h"
-
-#endif // EIGEN_SVD_MODULE_H
-/* vim: set filetype=cpp et sw=2 ts=2 ai: */