mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-01-18 17:31:19 +01:00
<!-- Thanks for contributing a merge request! We recommend that first-time contributors read our [contribution guidelines](https://eigen.tuxfamily.org/index.php?title=Contributing_to_Eigen). Before submitting the MR, please complete the following checks: - Create one PR per feature or bugfix, - Run the test suite to verify your changes. See our [test guidelines](https://eigen.tuxfamily.org/index.php?title=Tests). - Add tests to cover the bug addressed or any new feature. - Document new features. If it is a substantial change, add it to the [Changelog](https://gitlab.com/libeigen/eigen/-/blob/master/CHANGELOG.md). - Leave the following box checked when submitting: `Allow commits from members who can merge to the target branch`. This allows us to rebase and merge your change. Note that we are a team of volunteers; we appreciate your patience during the review process. --> ### Description <!--Please explain your changes.--> More ComplexQZ fixes. Extra semicolons are triggering some warnings and errors with `-Werror`. Moved the `Sparse` import up to the umbrella header to avoid IWYU exports. ### Reference issue <!-- You can link to a specific issue using the gitlab syntax #<issue number>. If the MR fixes an issue, write "Fixes #<issue number>" to have the issue automatically closed on merge. --> ### Additional information <!--Any additional information you think is important.--> See merge request libeigen/eigen!2036
64 lines
1.8 KiB
Plaintext
64 lines
1.8 KiB
Plaintext
// 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/.
|
|
|
|
#ifndef EIGEN_EIGENVALUES_MODULE_H
|
|
#define EIGEN_EIGENVALUES_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
#include "Cholesky"
|
|
#include "Jacobi"
|
|
#include "Householder"
|
|
#include "LU"
|
|
#include "Geometry"
|
|
#include "Sparse" // Needed by ComplexQZ.
|
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
|
|
|
/** \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
|
|
*/
|
|
|
|
// IWYU pragma: begin_exports
|
|
#include "src/Eigenvalues/Tridiagonalization.h"
|
|
#include "src/Eigenvalues/RealSchur.h"
|
|
#include "src/Eigenvalues/EigenSolver.h"
|
|
#include "src/Eigenvalues/SelfAdjointEigenSolver.h"
|
|
#include "src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h"
|
|
#include "src/Eigenvalues/HessenbergDecomposition.h"
|
|
#include "src/Eigenvalues/ComplexSchur.h"
|
|
#include "src/Eigenvalues/ComplexEigenSolver.h"
|
|
#include "src/Eigenvalues/RealQZ.h"
|
|
#include "src/Eigenvalues/ComplexQZ.h"
|
|
#include "src/Eigenvalues/GeneralizedEigenSolver.h"
|
|
#include "src/Eigenvalues/MatrixBaseEigenvalues.h"
|
|
#ifdef EIGEN_USE_LAPACKE
|
|
#ifdef EIGEN_USE_MKL
|
|
#include "mkl_lapacke.h"
|
|
#else
|
|
#include "src/misc/lapacke.h"
|
|
#endif
|
|
#include "src/Eigenvalues/RealSchur_LAPACKE.h"
|
|
#include "src/Eigenvalues/ComplexSchur_LAPACKE.h"
|
|
#include "src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h"
|
|
#endif
|
|
// IWYU pragma: end_exports
|
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
#endif // EIGEN_EIGENVALUES_MODULE_H
|