Files
eigen/unsupported/Eigen/ArpackSupport

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
949 B
Plaintext
Raw Permalink Normal View History

// 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/.
2012-12-16 19:11:24 +01:00
#ifndef EIGEN_ARPACKSUPPORT_MODULE_H
#define EIGEN_ARPACKSUPPORT_MODULE_H
#include "../../Eigen/Core"
2012-12-16 19:11:24 +01:00
/** \defgroup ArpackSupport_Module Arpack support module
2012-12-16 19:11:24 +01:00
*
* This module provides a wrapper to Arpack, a library for sparse eigenvalue decomposition.
2012-12-16 19:11:24 +01:00
*
* \code
* #include <unsupported/Eigen/ArpackSupport>
2012-12-16 19:11:24 +01:00
* \endcode
*/
#include "../../Eigen/SparseCholesky"
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
// IWYU pragma: begin_exports
#include "src/Eigenvalues/ArpackSelfAdjointEigenSolver.h"
// IWYU pragma: end_exports
2012-12-16 19:11:24 +01:00
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
2012-12-16 19:11:24 +01:00
#endif // EIGEN_ARPACKSUPPORT_MODULE_H