mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
29 lines
721 B
Plaintext
29 lines
721 B
Plaintext
|
#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: */
|