2008-08-04 04:45:59 +00:00
|
|
|
#ifndef EIGEN_LU_MODULE_H
|
|
|
|
#define EIGEN_LU_MODULE_H
|
2008-04-14 08:20:24 +00:00
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
2011-02-22 09:31:22 -05:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2008-12-18 20:48:02 +00:00
|
|
|
|
2008-07-22 10:54:42 +00:00
|
|
|
/** \defgroup LU_Module LU module
|
2008-08-11 21:26:37 +00:00
|
|
|
* This module includes %LU decomposition and related notions such as matrix inversion and determinant.
|
2008-07-22 10:54:42 +00:00
|
|
|
* This module defines the following MatrixBase methods:
|
|
|
|
* - MatrixBase::inverse()
|
|
|
|
* - MatrixBase::determinant()
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/LU>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2009-11-03 02:18:10 -05:00
|
|
|
#include "src/misc/Solve.h"
|
|
|
|
#include "src/misc/Kernel.h"
|
|
|
|
#include "src/misc/Image.h"
|
2009-10-28 18:19:29 -04:00
|
|
|
#include "src/LU/FullPivLU.h"
|
|
|
|
#include "src/LU/PartialPivLU.h"
|
2011-12-09 16:52:37 +01:00
|
|
|
#ifdef EIGEN_USE_LAPACKE
|
2011-12-05 14:52:21 +07:00
|
|
|
#include "src/LU/PartialPivLU_MKL.h"
|
|
|
|
#endif
|
2008-05-12 21:15:17 +00:00
|
|
|
#include "src/LU/Determinant.h"
|
|
|
|
#include "src/LU/Inverse.h"
|
2009-12-14 22:52:11 -05:00
|
|
|
|
|
|
|
#if defined EIGEN_VECTORIZE_SSE
|
|
|
|
#include "src/LU/arch/Inverse_SSE.h"
|
|
|
|
#endif
|
2008-04-14 08:20:24 +00:00
|
|
|
|
2011-01-25 10:02:36 -05:00
|
|
|
#ifdef EIGEN2_SUPPORT
|
|
|
|
#include "src/Eigen2Support/LU.h"
|
|
|
|
#endif
|
|
|
|
|
2011-02-22 09:31:22 -05:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2008-12-18 20:48:02 +00:00
|
|
|
|
2008-08-04 04:45:59 +00:00
|
|
|
#endif // EIGEN_LU_MODULE_H
|
2009-12-01 18:00:29 -05:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|