2008-05-01 13:53:05 +00:00
|
|
|
#ifndef EIGEN_CHOLESKY_MODULE_H
|
|
|
|
#define EIGEN_CHOLESKY_MODULE_H
|
|
|
|
|
|
|
|
#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 Cholesky_Module Cholesky module
|
2009-02-02 14:21:35 +00:00
|
|
|
*
|
2010-06-29 10:10:47 -04:00
|
|
|
*
|
2009-02-02 14:21:35 +00:00
|
|
|
*
|
2008-07-22 10:54:42 +00:00
|
|
|
* This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
|
2014-04-07 14:14:48 +01:00
|
|
|
* Those decompositions are also accessible via the following methods:
|
|
|
|
* - MatrixBase::llt()
|
2008-10-13 15:53:27 +00:00
|
|
|
* - MatrixBase::ldlt()
|
2014-04-07 14:14:48 +01:00
|
|
|
* - SelfAdjointView::llt()
|
|
|
|
* - SelfAdjointView::ldlt()
|
2008-07-22 10:54:42 +00:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/Cholesky>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2009-11-03 11:34:45 -05:00
|
|
|
#include "src/misc/Solve.h"
|
2008-10-13 15:53:27 +00:00
|
|
|
#include "src/Cholesky/LLT.h"
|
|
|
|
#include "src/Cholesky/LDLT.h"
|
2011-12-09 16:52:37 +01:00
|
|
|
#ifdef EIGEN_USE_LAPACKE
|
2011-12-05 14:52:21 +07:00
|
|
|
#include "src/Cholesky/LLT_MKL.h"
|
|
|
|
#endif
|
2008-05-01 13:53:05 +00:00
|
|
|
|
2011-02-22 09:31:22 -05:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2008-12-18 20:48:02 +00:00
|
|
|
|
2008-05-01 13:53:05 +00:00
|
|
|
#endif // EIGEN_CHOLESKY_MODULE_H
|
2009-12-01 18:00:29 -05:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|