Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/Eigen/Cholesky is written in an unsupported language. File is not indexed.

0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 // This Source Code Form is subject to the terms of the Mozilla
0005 // Public License v. 2.0. If a copy of the MPL was not distributed
0006 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0007 
0008 #ifndef EIGEN_CHOLESKY_MODULE_H
0009 #define EIGEN_CHOLESKY_MODULE_H
0010 
0011 #include "Core"
0012 #include "Jacobi"
0013 
0014 #include "src/Core/util/DisableStupidWarnings.h"
0015 
0016 /** \defgroup Cholesky_Module Cholesky module
0017   *
0018   *
0019   *
0020   * This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
0021   * Those decompositions are also accessible via the following methods:
0022   *  - MatrixBase::llt()
0023   *  - MatrixBase::ldlt()
0024   *  - SelfAdjointView::llt()
0025   *  - SelfAdjointView::ldlt()
0026   *
0027   * \code
0028   * #include <Eigen/Cholesky>
0029   * \endcode
0030   */
0031 
0032 #include "src/Cholesky/LLT.h"
0033 #include "src/Cholesky/LDLT.h"
0034 #ifdef EIGEN_USE_LAPACKE
0035 #ifdef EIGEN_USE_MKL
0036 #include "mkl_lapacke.h"
0037 #else
0038 #include "src/misc/lapacke.h"
0039 #endif
0040 #include "src/Cholesky/LLT_LAPACKE.h"
0041 #endif
0042 
0043 #include "src/Core/util/ReenableStupidWarnings.h"
0044 
0045 #endif // EIGEN_CHOLESKY_MODULE_H