aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/CholmodSupport
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-06-04 13:24:41 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-06-04 13:24:41 +0200
commit945179b26c952f12ca6ea9ad293330cdde7554a0 (patch)
tree46248287e6deea2c321a62051ee3150bc0d0e069 /Eigen/CholmodSupport
parent5f5a4d4546f785821612a53efafba3552ecb048e (diff)
CholmodDecomposition now has explicit variants. These variants will allow to provide access to the underlying factors.
Diffstat (limited to 'Eigen/CholmodSupport')
-rw-r--r--Eigen/CholmodSupport10
1 files changed, 10 insertions, 0 deletions
diff --git a/Eigen/CholmodSupport b/Eigen/CholmodSupport
index f26aaf64e..0e1ff48e0 100644
--- a/Eigen/CholmodSupport
+++ b/Eigen/CholmodSupport
@@ -12,6 +12,16 @@ extern "C" {
/** \ingroup Support_modules
* \defgroup CholmodSupport_Module CholmodSupport module
*
+ * This module provides an interface to the Cholmod library which is part of the <a href="http://www.cise.ufl.edu/research/sparse/SuiteSparse/">suitesparse</a> package.
+ * It provides the two following main factorization classes:
+ * - class CholmodSupernodalLLT: a supernodal LLT Cholesky factorization.
+ * - class CholmodDecomposiiton: a general L(D)LT Cholesky factorization with automatic or explicit runtime selection of the underlying factorization method (supernodal or simplicial).
+ *
+ * For the sake of completeness, this module also propose the two following classes:
+ * - class CholmodSimplicialLLT
+ * - class CholmodSimplicialLDLT
+ * Note that these classes does not bring any particular advantage compared to the built-in
+ * SimplicialLLT and SimplicialLDLT factorization classes.
*
* \code
* #include <Eigen/CholmodSupport>