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