2015-10-26 11:46:05 +01:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
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/Kernel.h"
|
|
|
|
#include "src/misc/Image.h"
|
2023-02-08 17:40:31 +00:00
|
|
|
|
|
|
|
// IWYU pragma: begin_exports
|
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
|
2021-12-02 00:10:58 +00:00
|
|
|
#include "src/misc/lapacke_helpers.h"
|
2016-07-25 18:00:47 +02:00
|
|
|
#include "src/LU/PartialPivLU_LAPACKE.h"
|
2011-12-05 14:52:21 +07:00
|
|
|
#endif
|
2008-05-12 21:15:17 +00:00
|
|
|
#include "src/LU/Determinant.h"
|
2014-02-24 11:49:30 +01:00
|
|
|
#include "src/LU/InverseImpl.h"
|
2009-12-14 22:52:11 -05:00
|
|
|
|
2021-04-22 15:21:01 +00:00
|
|
|
#if defined EIGEN_VECTORIZE_SSE || defined EIGEN_VECTORIZE_NEON
|
2020-11-17 12:27:01 +00:00
|
|
|
#include "src/LU/arch/InverseSize4.h"
|
2020-09-04 10:55:47 +00:00
|
|
|
#endif
|
2023-02-08 17:40:31 +00:00
|
|
|
// IWYU pragma: end_exports
|
2020-09-04 10:55:47 +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-08-04 04:45:59 +00:00
|
|
|
#endif // EIGEN_LU_MODULE_H
|