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/.
|
|
|
|
|
|
2009-09-04 09:23:38 +02:00
|
|
|
#ifndef EIGEN_EIGENVALUES_MODULE_H
|
|
|
|
|
#define EIGEN_EIGENVALUES_MODULE_H
|
|
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
|
|
|
|
|
#include "Cholesky"
|
2009-11-02 10:46:40 +01:00
|
|
|
#include "LU"
|
2011-07-21 19:07:52 +02:00
|
|
|
#include "Geometry"
|
2025-10-20 21:09:53 +00:00
|
|
|
#include "Sparse" // Needed by ComplexQZ.
|
2009-09-04 09:23:38 +02:00
|
|
|
|
2018-08-28 11:44:15 +02:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
|
|
|
|
|
2009-09-04 09:23:38 +02:00
|
|
|
/** \defgroup Eigenvalues_Module Eigenvalues module
|
|
|
|
|
*
|
|
|
|
|
* This module mainly provides various eigenvalue solvers.
|
|
|
|
|
* This module also provides some MatrixBase methods, including:
|
|
|
|
|
* - MatrixBase::eigenvalues(),
|
|
|
|
|
* - MatrixBase::operatorNorm()
|
|
|
|
|
*
|
|
|
|
|
* \code
|
|
|
|
|
* #include <Eigen/Eigenvalues>
|
|
|
|
|
* \endcode
|
|
|
|
|
*/
|
|
|
|
|
|
2023-02-08 17:40:31 +00:00
|
|
|
// IWYU pragma: begin_exports
|
2009-09-04 09:23:38 +02:00
|
|
|
#include "src/Eigenvalues/Tridiagonalization.h"
|
2010-04-01 12:32:56 +01:00
|
|
|
#include "src/Eigenvalues/RealSchur.h"
|
2009-09-04 09:23:38 +02:00
|
|
|
#include "src/Eigenvalues/EigenSolver.h"
|
|
|
|
|
#include "src/Eigenvalues/SelfAdjointEigenSolver.h"
|
2010-06-16 23:48:16 +02:00
|
|
|
#include "src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h"
|
2009-09-04 09:23:38 +02:00
|
|
|
#include "src/Eigenvalues/HessenbergDecomposition.h"
|
|
|
|
|
#include "src/Eigenvalues/ComplexSchur.h"
|
|
|
|
|
#include "src/Eigenvalues/ComplexEigenSolver.h"
|
2012-07-26 20:15:17 +02:00
|
|
|
#include "src/Eigenvalues/RealQZ.h"
|
2025-10-13 17:35:03 +00:00
|
|
|
#include "src/Eigenvalues/ComplexQZ.h"
|
2012-07-26 20:15:17 +02:00
|
|
|
#include "src/Eigenvalues/GeneralizedEigenSolver.h"
|
2010-05-24 17:43:50 +01:00
|
|
|
#include "src/Eigenvalues/MatrixBaseEigenvalues.h"
|
2011-12-09 16:52:37 +01:00
|
|
|
#ifdef EIGEN_USE_LAPACKE
|
2017-08-17 21:58:39 +02:00
|
|
|
#ifdef EIGEN_USE_MKL
|
|
|
|
|
#include "mkl_lapacke.h"
|
2026-03-28 03:16:46 +00:00
|
|
|
#elif defined(EIGEN_LAPACKE_SYSTEM)
|
|
|
|
|
#include <lapacke.h>
|
2017-08-17 21:58:39 +02:00
|
|
|
#else
|
2016-07-25 18:20:08 +02:00
|
|
|
#include "src/misc/lapacke.h"
|
2017-08-17 21:58:39 +02:00
|
|
|
#endif
|
2016-07-25 18:00:47 +02:00
|
|
|
#include "src/Eigenvalues/RealSchur_LAPACKE.h"
|
|
|
|
|
#include "src/Eigenvalues/ComplexSchur_LAPACKE.h"
|
|
|
|
|
#include "src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h"
|
2011-12-05 14:52:21 +07:00
|
|
|
#endif
|
2023-02-08 17:40:31 +00:00
|
|
|
// IWYU pragma: end_exports
|
2009-09-04 09:23:38 +02:00
|
|
|
|
2011-02-22 09:31:22 -05:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2009-09-04 09:23:38 +02:00
|
|
|
|
|
|
|
|
#endif // EIGEN_EIGENVALUES_MODULE_H
|