Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/eigen3/unsupported/Eigen/ArpackSupport is written in an unsupported language. File is not indexed.

0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla
0006 // Public License v. 2.0. If a copy of the MPL was not distributed
0007 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0008 
0009 #ifndef EIGEN_ARPACKSUPPORT_MODULE_H
0010 #define EIGEN_ARPACKSUPPORT_MODULE_H
0011 
0012 #include "../../Eigen/Core"
0013 
0014 /** \defgroup ArpackSupport_Module Arpack support module
0015   *
0016   * This module provides a wrapper to Arpack, a library for sparse eigenvalue decomposition.
0017   *
0018   * \code
0019   * #include <Eigen/ArpackSupport>
0020   * \endcode
0021   */
0022 
0023 #include "../../Eigen/SparseCholesky"
0024 
0025 #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
0026 #include "src/Eigenvalues/ArpackSelfAdjointEigenSolver.h"
0027 
0028 #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
0029 
0030 #endif // EIGEN_ARPACKSUPPORT_MODULE_H