aboutsummaryrefslogtreecommitdiff
path: root/src/Eigen/LU
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/LU
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/LU')
-rw-r--r--src/Eigen/LU41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/Eigen/LU b/src/Eigen/LU
deleted file mode 100644
index db57955..0000000
--- a/src/Eigen/LU
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef EIGEN_LU_MODULE_H
-#define EIGEN_LU_MODULE_H
-
-#include "Core"
-
-#include "src/Core/util/DisableStupidWarnings.h"
-
-/** \defgroup LU_Module LU module
- * This module includes %LU decomposition and related notions such as matrix inversion and determinant.
- * This module defines the following MatrixBase methods:
- * - MatrixBase::inverse()
- * - MatrixBase::determinant()
- *
- * \code
- * #include <Eigen/LU>
- * \endcode
- */
-
-#include "src/misc/Solve.h"
-#include "src/misc/Kernel.h"
-#include "src/misc/Image.h"
-#include "src/LU/FullPivLU.h"
-#include "src/LU/PartialPivLU.h"
-#ifdef EIGEN_USE_LAPACKE
-#include "src/LU/PartialPivLU_MKL.h"
-#endif
-#include "src/LU/Determinant.h"
-#include "src/LU/Inverse.h"
-
-#if defined EIGEN_VECTORIZE_SSE
- #include "src/LU/arch/Inverse_SSE.h"
-#endif
-
-#ifdef EIGEN2_SUPPORT
- #include "src/Eigen2Support/LU.h"
-#endif
-
-#include "src/Core/util/ReenableStupidWarnings.h"
-
-#endif // EIGEN_LU_MODULE_H
-/* vim: set filetype=cpp et sw=2 ts=2 ai: */