mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
31 lines
557 B
Plaintext
31 lines
557 B
Plaintext
#ifndef EIGEN_UMFPACKSUPPORT_MODULE_H
|
|
#define EIGEN_UMFPACKSUPPORT_MODULE_H
|
|
|
|
#include "SparseCore"
|
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
|
|
|
extern "C" {
|
|
#include <umfpack.h>
|
|
}
|
|
|
|
/** \ingroup Support_modules
|
|
* \defgroup UmfPackSupport_Module UmfPackSupport module
|
|
*
|
|
*
|
|
*
|
|
*
|
|
* \code
|
|
* #include <Eigen/UmfPackSupport>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/misc/Solve.h"
|
|
#include "src/misc/SparseSolve.h"
|
|
|
|
#include "src/UmfPackSupport/UmfPackSupport.h"
|
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
#endif // EIGEN_UMFPACKSUPPORT_MODULE_H
|