mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-05-08 05:49:06 +08:00
29 lines
721 B
C++
29 lines
721 B
C++
#ifndef EIGEN_ARPACKSUPPORT_MODULE_H
|
|
#define EIGEN_ARPACKSUPPORT_MODULE_H
|
|
|
|
#include <Eigen/Core>
|
|
|
|
#include <Eigen/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
|
|
*/
|
|
|
|
#include <Eigen/SparseCholesky>
|
|
#include "src/Eigenvalues/ArpackGeneralizedSelfAdjointEigenSolver.h"
|
|
|
|
#include <Eigen/src/Core/util/ReenableStupidWarnings.h>
|
|
|
|
#endif // EIGEN_ARPACKSUPPORT_MODULE_H
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|