mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
30 lines
517 B
Plaintext
30 lines
517 B
Plaintext
#ifndef EIGEN_UMFPACKSUPPORT_MODULE_H
|
|
#define EIGEN_UMFPACKSUPPORT_MODULE_H
|
|
|
|
#include "SparseExtra"
|
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
#include <umfpack.h>
|
|
|
|
namespace Eigen {
|
|
|
|
/** \ingroup Unsupported_modules
|
|
* \defgroup UmfPackSupport_Module UmfPack support module
|
|
*
|
|
*
|
|
*
|
|
*
|
|
* \code
|
|
* #include <Eigen/UmfPackSupport>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/SparseExtra/UmfPackSupport.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
#endif // EIGEN_UMFPACKSUPPORT_MODULE_H
|