2010-06-18 17:28:30 +08:00
|
|
|
#ifndef EIGEN_CHOLMODSUPPORT_MODULE_H
|
|
|
|
#define EIGEN_CHOLMODSUPPORT_MODULE_H
|
|
|
|
|
|
|
|
#include "SparseExtra"
|
|
|
|
|
2010-10-05 02:56:54 +08:00
|
|
|
#include "../../Eigen/src/Core/util/DisableMSVCWarnings.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
|
|
|
|
|
|
|
namespace Eigen {
|
|
|
|
|
2010-06-30 19:19:54 +08:00
|
|
|
/** \ingroup Unsupported_modules
|
|
|
|
* \defgroup CholmodSupport_Module Cholmod Support module
|
2010-06-18 17:28:30 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/CholmodSupport>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2010-10-05 02:56:54 +08:00
|
|
|
struct Cholmod {};
|
|
|
|
|
2010-06-18 17:28:30 +08:00
|
|
|
#include "src/SparseExtra/CholmodSupport.h"
|
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
2010-10-05 02:56:54 +08:00
|
|
|
#include "../../Eigen/src/Core/util/EnableMSVCWarnings.h"
|
2010-06-18 17:28:30 +08:00
|
|
|
|
|
|
|
#endif // EIGEN_CHOLMODSUPPORT_MODULE_H
|
|
|
|
|