Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/Eigen/LU 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_LU_MODULE_H
0009 #define EIGEN_LU_MODULE_H
0010 
0011 #include "Core"
0012 
0013 #include "src/Core/util/DisableStupidWarnings.h"
0014 
0015 /** \defgroup LU_Module LU module
0016   * This module includes %LU decomposition and related notions such as matrix inversion and determinant.
0017   * This module defines the following MatrixBase methods:
0018   *  - MatrixBase::inverse()
0019   *  - MatrixBase::determinant()
0020   *
0021   * \code
0022   * #include <Eigen/LU>
0023   * \endcode
0024   */
0025 
0026 #include "src/misc/Kernel.h"
0027 #include "src/misc/Image.h"
0028 #include "src/LU/FullPivLU.h"
0029 #include "src/LU/PartialPivLU.h"
0030 #ifdef EIGEN_USE_LAPACKE
0031 #ifdef EIGEN_USE_MKL
0032 #include "mkl_lapacke.h"
0033 #else
0034 #include "src/misc/lapacke.h"
0035 #endif
0036 #include "src/LU/PartialPivLU_LAPACKE.h"
0037 #endif
0038 #include "src/LU/Determinant.h"
0039 #include "src/LU/InverseImpl.h"
0040 
0041 #if defined EIGEN_VECTORIZE_SSE || defined EIGEN_VECTORIZE_NEON
0042   #include "src/LU/arch/InverseSize4.h"
0043 #endif
0044 
0045 #include "src/Core/util/ReenableStupidWarnings.h"
0046 
0047 #endif // EIGEN_LU_MODULE_H