Warning, /include/eigen3/Eigen/MetisSupport 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 // This Source Code Form is subject to the terms of the Mozilla
0005 // Public License v. 2.0. If a copy of the MPL was not distributed
0006 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0007
0008 #ifndef EIGEN_METISSUPPORT_MODULE_H
0009 #define EIGEN_METISSUPPORT_MODULE_H
0010
0011 #include "SparseCore"
0012
0013 #include "src/Core/util/DisableStupidWarnings.h"
0014
0015 extern "C" {
0016 #include <metis.h>
0017 }
0018
0019
0020 /** \ingroup Support_modules
0021 * \defgroup MetisSupport_Module MetisSupport module
0022 *
0023 * \code
0024 * #include <Eigen/MetisSupport>
0025 * \endcode
0026 * This module defines an interface to the METIS reordering package (http://glaros.dtc.umn.edu/gkhome/views/metis).
0027 * It can be used just as any other built-in method as explained in \link OrderingMethods_Module here. \endlink
0028 */
0029
0030
0031 #include "src/MetisSupport/MetisSupport.h"
0032
0033 #include "src/Core/util/ReenableStupidWarnings.h"
0034
0035 #endif // EIGEN_METISSUPPORT_MODULE_H