You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
697 B

  1. #ifndef EIGEN_METISSUPPORT_MODULE_H
  2. #define EIGEN_METISSUPPORT_MODULE_H
  3. #include "SparseCore"
  4. #include "src/Core/util/DisableStupidWarnings.h"
  5. extern "C" {
  6. #include <metis.h>
  7. }
  8. /** \ingroup Support_modules
  9. * \defgroup MetisSupport_Module MetisSupport module
  10. *
  11. * \code
  12. * #include <Eigen/MetisSupport>
  13. * \endcode
  14. * This module defines an interface to the METIS reordering package (http://glaros.dtc.umn.edu/gkhome/views/metis).
  15. * It can be used just as any other built-in method as explained in \link OrderingMethods_Module here. \endlink
  16. */
  17. #include "src/MetisSupport/MetisSupport.h"
  18. #include "src/Core/util/ReenableStupidWarnings.h"
  19. #endif // EIGEN_METISSUPPORT_MODULE_H