mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-07 18:27:40 +08:00
29 lines
481 B
Plaintext
29 lines
481 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 {
|
|
|
|
/** \defgroup Sparse_Module Sparse module
|
|
*
|
|
* \nonstableyet
|
|
*
|
|
*
|
|
* \code
|
|
* #include <Eigen/UmfPackSupport>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/SparseExtra/UmfPackSupport.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
#endif // EIGEN_UMFPACKSUPPORT_MODULE_H
|