1 #ifndef EIGEN_SPQRSUPPORT_MODULE_H 2 #define EIGEN_SPQRSUPPORT_MODULE_H 3 4 #include "SparseCore" 5 6 #include "src/Core/util/DisableStupidWarnings.h" 7 8 #include "SuiteSparseQR.hpp" 9 10 /** \ingroup Support_modules 11 * \defgroup SPQRSupport_Module SuiteSparseQR module 12 * 13 * 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. 14 * 15 * \code 16 * #include <Eigen/SPQRSupport> 17 * \endcode 18 * 19 * 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,...). 20 * For a cmake based project, you can use our FindSPQR.cmake and FindCholmod.Cmake modules 21 * 22 */ 23 24 #include "src/misc/Solve.h" 25 #include "src/misc/SparseSolve.h" 26 #include "src/CholmodSupport/CholmodSupport.h" 27 #include "src/SPQRSupport/SuiteSparseQRSupport.h" 28 29 #endif 30