2011-10-05 17:04:40 +02:00
|
|
|
#ifndef EIGEN_SPARSE_MODULE_H
|
|
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
|
2014-05-14 17:20:00 +02:00
|
|
|
/** \defgroup Sparse_Module Sparse meta-module
|
2011-10-05 17:04:40 +02:00
|
|
|
*
|
2012-10-05 09:27:34 +02:00
|
|
|
* Meta-module including all related modules:
|
2014-05-14 17:20:00 +02:00
|
|
|
* - \ref SparseCore_Module
|
|
|
|
* - \ref OrderingMethods_Module
|
|
|
|
* - \ref SparseCholesky_Module
|
|
|
|
* - \ref SparseLU_Module
|
|
|
|
* - \ref SparseQR_Module
|
|
|
|
* - \ref IterativeLinearSolvers_Module
|
2011-10-05 17:04:40 +02:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/Sparse>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2012-10-05 09:27:34 +02:00
|
|
|
#include "SparseCore"
|
|
|
|
#include "OrderingMethods"
|
|
|
|
#include "SparseCholesky"
|
2014-05-14 17:20:00 +02:00
|
|
|
#include "SparseLU"
|
|
|
|
#include "SparseQR"
|
2012-10-05 09:27:34 +02:00
|
|
|
#include "IterativeLinearSolvers"
|
2011-10-05 17:04:40 +02:00
|
|
|
|
|
|
|
#endif // EIGEN_SPARSE_MODULE_H
|
|
|
|
|