aboutsummaryrefslogtreecommitdiff
path: root/src/Eigen/SPQRSupport
diff options
context:
space:
mode:
authorxiangzhou2015-07-11 13:05:26 -0400
committerxiangzhou2015-07-11 13:05:26 -0400
commitc65902a4e062689f03bb22e3b2d2526cf887750d (patch)
treeeb1be445e26178efb98d960617355b9c86a30b65 /src/Eigen/SPQRSupport
parentb3b491cd9143d33bfebd4c5b26629573afcf0970 (diff)
downloadpangemma-c65902a4e062689f03bb22e3b2d2526cf887750d.tar.gz
add GXE test
Diffstat (limited to 'src/Eigen/SPQRSupport')
-rw-r--r--src/Eigen/SPQRSupport29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Eigen/SPQRSupport b/src/Eigen/SPQRSupport
new file mode 100644
index 0000000..7701644
--- /dev/null
+++ b/src/Eigen/SPQRSupport
@@ -0,0 +1,29 @@
+#ifndef EIGEN_SPQRSUPPORT_MODULE_H
+#define EIGEN_SPQRSUPPORT_MODULE_H
+
+#include "SparseCore"
+
+#include "src/Core/util/DisableStupidWarnings.h"
+
+#include "SuiteSparseQR.hpp"
+
+/** \ingroup Support_modules
+ * \defgroup SPQRSupport_Module SuiteSparseQR module
+ *
+ * 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.
+ *
+ * \code
+ * #include <Eigen/SPQRSupport>
+ * \endcode
+ *
+ * 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,...).
+ * For a cmake based project, you can use our FindSPQR.cmake and FindCholmod.Cmake modules
+ *
+ */
+
+#include "src/misc/Solve.h"
+#include "src/misc/SparseSolve.h"
+#include "src/CholmodSupport/CholmodSupport.h"
+#include "src/SPQRSupport/SuiteSparseQRSupport.h"
+
+#endif