2015-10-26 18:46:05 +08: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 12:45:59 +08:00
|
|
|
#ifndef EIGEN_LU_MODULE_H
|
|
|
|
#define EIGEN_LU_MODULE_H
|
2008-04-14 16:20:24 +08:00
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
2011-02-22 22:31:22 +08:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
2008-07-22 18:54:42 +08:00
|
|
|
/** \defgroup LU_Module LU module
|
2008-08-12 05:26:37 +08:00
|
|
|
* This module includes %LU decomposition and related notions such as matrix inversion and determinant.
|
2008-07-22 18:54:42 +08:00
|
|
|
* This module defines the following MatrixBase methods:
|
|
|
|
* - MatrixBase::inverse()
|
|
|
|
* - MatrixBase::determinant()
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/LU>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2009-11-03 15:18:10 +08:00
|
|
|
#include "src/misc/Kernel.h"
|
|
|
|
#include "src/misc/Image.h"
|
2009-10-29 06:19:29 +08:00
|
|
|
#include "src/LU/FullPivLU.h"
|
|
|
|
#include "src/LU/PartialPivLU.h"
|
2011-12-09 23:52:37 +08:00
|
|
|
#ifdef EIGEN_USE_LAPACKE
|
2016-07-26 00:20:08 +08:00
|
|
|
#include "src/misc/lapacke.h"
|
2016-07-26 00:00:47 +08:00
|
|
|
#include "src/LU/PartialPivLU_LAPACKE.h"
|
2011-12-05 15:52:21 +08:00
|
|
|
#endif
|
2008-05-13 05:15:17 +08:00
|
|
|
#include "src/LU/Determinant.h"
|
2014-02-24 18:49:30 +08:00
|
|
|
#include "src/LU/InverseImpl.h"
|
2009-12-15 11:52:11 +08:00
|
|
|
|
2014-01-30 03:43:05 +08:00
|
|
|
// Use the SSE optimized version whenever possible. At the moment the
|
|
|
|
// SSE version doesn't compile when AVX is enabled
|
|
|
|
#if defined EIGEN_VECTORIZE_SSE && !defined EIGEN_VECTORIZE_AVX
|
2009-12-15 11:52:11 +08:00
|
|
|
#include "src/LU/arch/Inverse_SSE.h"
|
|
|
|
#endif
|
2008-04-14 16:20:24 +08:00
|
|
|
|
2011-02-22 22:31:22 +08:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
2008-08-04 12:45:59 +08:00
|
|
|
#endif // EIGEN_LU_MODULE_H
|
2009-12-02 07:00:29 +08:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|