aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/SparseQR
diff options
context:
space:
mode:
authorGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2013-01-11 17:16:14 +0100
committerGravatar Desire NUENTSA <desire.nuentsa_wakam@inria.fr>2013-01-11 17:16:14 +0100
commit91b3b3aaab19fc11db18d95a28c1a0be9ae9d9cd (patch)
treed5858697f227ce67812944a181627a593df76552 /Eigen/SparseQR
parent1ccd90a927e7386574ff845ff0d326733352e9d1 (diff)
Add a sparse QR factorization and update the elimination tree in SparseLU
Diffstat (limited to 'Eigen/SparseQR')
-rw-r--r--Eigen/SparseQR28
1 files changed, 28 insertions, 0 deletions
diff --git a/Eigen/SparseQR b/Eigen/SparseQR
new file mode 100644
index 000000000..d2382666a
--- /dev/null
+++ b/Eigen/SparseQR
@@ -0,0 +1,28 @@
+#ifndef EIGEN_SPARSEQR_MODULE_H
+#define EIGEN_SPARSEQR_MODULE_H
+
+#include "SparseCore"
+#include "OrderingMethods"
+#include "src/Core/util/DisableStupidWarnings.h"
+
+/** \defgroup SparseQR_Module SparseQR module
+ *
+ *
+ * This module provides a simplicial version of the left-looking Sparse QR decomposition.
+ * The columns of the input matrix should be reordered to limit the fill-in during the
+ * decomposition. Built-in methods (COLAMD, AMD) or external methods (METIS) can be used to this end.
+ * See \link OrderingMethods_Module OrderingMethods_Module \endlink for the list
+ * of built-in and external ordering methods.
+ *
+ * \code
+ * #include <Eigen/SparseQR>
+ * \endcode
+ *
+ *
+ */
+
+#include "src/SparseQR/SparseQR.h"
+
+#include "src/Core/util/ReenableStupidWarnings.h"
+
+#endif \ No newline at end of file