mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +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
|