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.

36 lines
1.1 KiB

  1. #ifndef EIGEN_UMFPACKSUPPORT_MODULE_H
  2. #define EIGEN_UMFPACKSUPPORT_MODULE_H
  3. #include "SparseCore"
  4. #include "src/Core/util/DisableStupidWarnings.h"
  5. extern "C" {
  6. #include <umfpack.h>
  7. }
  8. /** \ingroup Support_modules
  9. * \defgroup UmfPackSupport_Module UmfPackSupport module
  10. *
  11. * This module provides an interface to the UmfPack library which is part of the <a href="http://www.cise.ufl.edu/research/sparse/SuiteSparse/">suitesparse</a> package.
  12. * It provides the following factorization class:
  13. * - class UmfPackLU: a multifrontal sequential LU factorization.
  14. *
  15. * \code
  16. * #include <Eigen/UmfPackSupport>
  17. * \endcode
  18. *
  19. * In order to use this module, the umfpack headers must be accessible from the include paths, and your binary must be linked to the umfpack library and its dependencies.
  20. * The dependencies depend on how umfpack has been compiled.
  21. * For a cmake based project, you can use our FindUmfPack.cmake module to help you in this task.
  22. *
  23. */
  24. #include "src/misc/Solve.h"
  25. #include "src/misc/SparseSolve.h"
  26. #include "src/UmfPackSupport/UmfPackSupport.h"
  27. #include "src/Core/util/ReenableStupidWarnings.h"
  28. #endif // EIGEN_UMFPACKSUPPORT_MODULE_H