aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/LU
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-08-04 04:45:59 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-08-04 04:45:59 +0000
commitc2f8ecf46683adcab0db05199ee2ebe15e6ada4a (patch)
tree34e909defb2401c96332663c127225be6d08700c /Eigen/LU
parentf81dfcf00b8fb26bd21495023799118fa444870a (diff)
* LU decomposition, supporting all rectangular matrices, with full
pivoting for better numerical stability. For now the only application is determinant. * New determinant unit-test. * Disable most of Swap.h for now as it makes LU fail (mysterious). Anyway Swap needs a big overhaul as proposed on IRC. * Remnants of old class Inverse removed. * Some warnings fixed.
Diffstat (limited to 'Eigen/LU')
-rw-r--r--Eigen/LU7
1 files changed, 4 insertions, 3 deletions
diff --git a/Eigen/LU b/Eigen/LU
index f452d8307..c91150035 100644
--- a/Eigen/LU
+++ b/Eigen/LU
@@ -1,5 +1,5 @@
-#ifndef EIGEN_LU_H
-#define EIGEN_LU_H
+#ifndef EIGEN_LU_MODULE_H
+#define EIGEN_LU_MODULE_H
#include "Core"
@@ -16,9 +16,10 @@ namespace Eigen {
* \endcode
*/
+#include "src/LU/LU.h"
#include "src/LU/Determinant.h"
#include "src/LU/Inverse.h"
} // namespace Eigen
-#endif // EIGEN_LU_H
+#endif // EIGEN_LU_MODULE_H