1*bf2c3715SXin Li// This file is part of Eigen, a lightweight C++ template library 2*bf2c3715SXin Li// for linear algebra. 3*bf2c3715SXin Li// 4*bf2c3715SXin Li// This Source Code Form is subject to the terms of the Mozilla 5*bf2c3715SXin Li// Public License v. 2.0. If a copy of the MPL was not distributed 6*bf2c3715SXin Li// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. 7*bf2c3715SXin Li 8*bf2c3715SXin Li#ifndef EIGEN_METISSUPPORT_MODULE_H 9*bf2c3715SXin Li#define EIGEN_METISSUPPORT_MODULE_H 10*bf2c3715SXin Li 11*bf2c3715SXin Li#include "SparseCore" 12*bf2c3715SXin Li 13*bf2c3715SXin Li#include "src/Core/util/DisableStupidWarnings.h" 14*bf2c3715SXin Li 15*bf2c3715SXin Liextern "C" { 16*bf2c3715SXin Li#include <metis.h> 17*bf2c3715SXin Li} 18*bf2c3715SXin Li 19*bf2c3715SXin Li 20*bf2c3715SXin Li/** \ingroup Support_modules 21*bf2c3715SXin Li * \defgroup MetisSupport_Module MetisSupport module 22*bf2c3715SXin Li * 23*bf2c3715SXin Li * \code 24*bf2c3715SXin Li * #include <Eigen/MetisSupport> 25*bf2c3715SXin Li * \endcode 26*bf2c3715SXin Li * This module defines an interface to the METIS reordering package (http://glaros.dtc.umn.edu/gkhome/views/metis). 27*bf2c3715SXin Li * It can be used just as any other built-in method as explained in \link OrderingMethods_Module here. \endlink 28*bf2c3715SXin Li */ 29*bf2c3715SXin Li 30*bf2c3715SXin Li 31*bf2c3715SXin Li#include "src/MetisSupport/MetisSupport.h" 32*bf2c3715SXin Li 33*bf2c3715SXin Li#include "src/Core/util/ReenableStupidWarnings.h" 34*bf2c3715SXin Li 35*bf2c3715SXin Li#endif // EIGEN_METISSUPPORT_MODULE_H 36