2011-10-23 17:52:20 +00:00
|
|
|
#ifndef EIGEN_SPARSE_MODULE_H
|
|
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
|
2014-03-21 10:04:53 +00:00
|
|
|
/** \defgroup Sparse_Module Sparse meta-module
|
2011-10-23 17:52:20 +00:00
|
|
|
*
|
2012-10-15 16:29:23 +00:00
|
|
|
* Meta-module including all related modules:
|
2014-03-21 10:04:53 +00:00
|
|
|
* - \ref SparseCore_Module
|
|
|
|
* - \ref OrderingMethods_Module
|
|
|
|
* - \ref SparseCholesky_Module
|
|
|
|
* - \ref SparseLU_Module
|
|
|
|
* - \ref SparseQR_Module
|
|
|
|
* - \ref IterativeLinearSolvers_Module
|
2011-10-23 17:52:20 +00:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/Sparse>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2012-10-15 16:29:23 +00:00
|
|
|
#include "SparseCore"
|
|
|
|
#include "OrderingMethods"
|
|
|
|
#include "SparseCholesky"
|
2014-03-21 10:04:53 +00:00
|
|
|
#include "SparseLU"
|
|
|
|
#include "SparseQR"
|
2012-10-15 16:29:23 +00:00
|
|
|
#include "IterativeLinearSolvers"
|
2011-10-23 17:52:20 +00:00
|
|
|
|
|
|
|
#endif // EIGEN_SPARSE_MODULE_H
|
|
|
|
|