diff options
author | xiangzhou | 2015-07-11 13:05:26 -0400 |
---|---|---|
committer | xiangzhou | 2015-07-11 13:05:26 -0400 |
commit | c65902a4e062689f03bb22e3b2d2526cf887750d (patch) | |
tree | eb1be445e26178efb98d960617355b9c86a30b65 /src/Eigen/MetisSupport | |
parent | b3b491cd9143d33bfebd4c5b26629573afcf0970 (diff) | |
download | pangemma-c65902a4e062689f03bb22e3b2d2526cf887750d.tar.gz |
add GXE test
Diffstat (limited to 'src/Eigen/MetisSupport')
-rw-r--r-- | src/Eigen/MetisSupport | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Eigen/MetisSupport b/src/Eigen/MetisSupport new file mode 100644 index 0000000..6a113f7 --- /dev/null +++ b/src/Eigen/MetisSupport @@ -0,0 +1,28 @@ +#ifndef EIGEN_METISSUPPORT_MODULE_H +#define EIGEN_METISSUPPORT_MODULE_H + +#include "SparseCore" + +#include "src/Core/util/DisableStupidWarnings.h" + +extern "C" { +#include <metis.h> +} + + +/** \ingroup Support_modules + * \defgroup MetisSupport_Module MetisSupport module + * + * \code + * #include <Eigen/MetisSupport> + * \endcode + * This module defines an interface to the METIS reordering package (http://glaros.dtc.umn.edu/gkhome/views/metis). + * It can be used just as any other built-in method as explained in \link OrderingMethods_Module here. \endlink + */ + + +#include "src/MetisSupport/MetisSupport.h" + +#include "src/Core/util/ReenableStupidWarnings.h" + +#endif // EIGEN_METISSUPPORT_MODULE_H |