2010-06-18 17:28:30 +08:00
|
|
|
#ifndef EIGEN_UMFPACKSUPPORT_MODULE_H
|
|
|
|
#define EIGEN_UMFPACKSUPPORT_MODULE_H
|
|
|
|
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "SparseCore"
|
2010-06-18 17:28:30 +08:00
|
|
|
|
2011-11-16 16:27:38 +08:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2010-06-18 17:28:30 +08:00
|
|
|
|
2011-02-18 01:19:28 +08:00
|
|
|
extern "C" {
|
2010-06-18 17:28:30 +08:00
|
|
|
#include <umfpack.h>
|
2011-02-18 01:19:28 +08:00
|
|
|
}
|
2010-06-18 17:28:30 +08:00
|
|
|
|
|
|
|
namespace Eigen {
|
|
|
|
|
2011-11-28 23:36:37 +08:00
|
|
|
/** \ingroup Support_modules
|
2011-11-12 21:11:27 +08:00
|
|
|
* \defgroup UmfPackSupport_Module UmfPackSupport module
|
2010-06-18 17:28:30 +08:00
|
|
|
*
|
2010-06-29 22:10:47 +08:00
|
|
|
*
|
2010-06-18 17:28:30 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/UmfPackSupport>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "src/misc/Solve.h"
|
|
|
|
#include "src/misc/SparseSolve.h"
|
2010-10-05 02:56:54 +08:00
|
|
|
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "src/UmfPackSupport/UmfPackSupport.h"
|
2010-06-18 17:28:30 +08:00
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
2011-11-16 16:27:38 +08:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2010-06-18 17:28:30 +08:00
|
|
|
|
|
|
|
#endif // EIGEN_UMFPACKSUPPORT_MODULE_H
|