34 lines
582 B
Plaintext
34 lines
582 B
Plaintext
#ifndef EIGEN_UMFPACKSUPPORT_MODULE_H
|
|
#define EIGEN_UMFPACKSUPPORT_MODULE_H
|
|
|
|
#include "SparseExtra"
|
|
|
|
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
|
|
|
extern "C" {
|
|
#include <umfpack.h>
|
|
}
|
|
|
|
namespace Eigen {
|
|
|
|
/** \ingroup Unsupported_modules
|
|
* \defgroup UmfPackSupport_Module UmfPack support module
|
|
*
|
|
*
|
|
*
|
|
*
|
|
* \code
|
|
* #include <Eigen/UmfPackSupport>
|
|
* \endcode
|
|
*/
|
|
|
|
struct UmfPack {};
|
|
|
|
#include "src/SparseExtra/UmfPackSupport.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
#endif // EIGEN_UMFPACKSUPPORT_MODULE_H
|