2010-06-18 11:28:30 +02:00
|
|
|
#ifndef EIGEN_CHOLMODSUPPORT_MODULE_H
|
|
|
|
|
#define EIGEN_CHOLMODSUPPORT_MODULE_H
|
|
|
|
|
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "SparseCore"
|
2010-06-18 11:28:30 +02:00
|
|
|
|
2011-11-16 09:27:38 +01:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2010-06-18 11:28:30 +02:00
|
|
|
|
2010-09-15 15:24:21 +02:00
|
|
|
extern "C" {
|
|
|
|
|
#include <cholmod.h>
|
|
|
|
|
}
|
2010-06-18 11:28:30 +02:00
|
|
|
|
2011-11-28 16:36:37 +01:00
|
|
|
/** \ingroup Support_modules
|
2011-11-12 14:11:27 +01:00
|
|
|
* \defgroup CholmodSupport_Module CholmodSupport module
|
2010-06-18 11:28:30 +02:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* \code
|
|
|
|
|
* #include <Eigen/CholmodSupport>
|
|
|
|
|
* \endcode
|
|
|
|
|
*/
|
|
|
|
|
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "src/misc/Solve.h"
|
|
|
|
|
#include "src/misc/SparseSolve.h"
|
|
|
|
|
|
|
|
|
|
#include "src/CholmodSupport/CholmodSupport.h"
|
2010-06-18 11:28:30 +02:00
|
|
|
|
2010-10-26 15:48:33 +02:00
|
|
|
|
2011-11-16 09:27:38 +01:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2010-06-18 11:28:30 +02:00
|
|
|
|
|
|
|
|
#endif // EIGEN_CHOLMODSUPPORT_MODULE_H
|
|
|
|
|
|