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.

29 lines
956 B

  1. #ifndef EIGEN_SPQRSUPPORT_MODULE_H
  2. #define EIGEN_SPQRSUPPORT_MODULE_H
  3. #include "SparseCore"
  4. #include "src/Core/util/DisableStupidWarnings.h"
  5. #include "SuiteSparseQR.hpp"
  6. /** \ingroup Support_modules
  7. * \defgroup SPQRSupport_Module SuiteSparseQR module
  8. *
  9. * This module provides an interface to the SPQR library, which is part of the <a href="http://www.cise.ufl.edu/research/sparse/SuiteSparse/">suitesparse</a> package.
  10. *
  11. * \code
  12. * #include <Eigen/SPQRSupport>
  13. * \endcode
  14. *
  15. * In order to use this module, the SPQR headers must be accessible from the include paths, and your binary must be linked to the SPQR library and its dependencies (Cholmod, AMD, COLAMD,...).
  16. * For a cmake based project, you can use our FindSPQR.cmake and FindCholmod.Cmake modules
  17. *
  18. */
  19. #include "src/misc/Solve.h"
  20. #include "src/misc/SparseSolve.h"
  21. #include "src/CholmodSupport/CholmodSupport.h"
  22. #include "src/SPQRSupport/SuiteSparseQRSupport.h"
  23. #endif