From 53fa8517245e0136c83b77526b05ce67de232a56 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 12 Nov 2011 14:11:27 +0100 Subject: move sparse solvers from unsupported/ to main Eigen/ and remove the "not stable yet" warning --- Eigen/CholmodSupport | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Eigen/CholmodSupport (limited to 'Eigen/CholmodSupport') diff --git a/Eigen/CholmodSupport b/Eigen/CholmodSupport new file mode 100644 index 000000000..09d6b9da4 --- /dev/null +++ b/Eigen/CholmodSupport @@ -0,0 +1,34 @@ +#ifndef EIGEN_CHOLMODSUPPORT_MODULE_H +#define EIGEN_CHOLMODSUPPORT_MODULE_H + +#include "SparseCore" + +#include "../../Eigen/src/Core/util/DisableStupidWarnings.h" + +extern "C" { + #include +} + +namespace Eigen { + +/** \ingroup Sparse_modules + * \defgroup CholmodSupport_Module CholmodSupport module + * + * + * \code + * #include + * \endcode + */ + +#include "src/misc/Solve.h" +#include "src/misc/SparseSolve.h" + +#include "src/CholmodSupport/CholmodSupport.h" + + +} // namespace Eigen + +#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h" + +#endif // EIGEN_CHOLMODSUPPORT_MODULE_H + -- cgit v1.2.3