2011-10-05 17:04:40 +02:00
|
|
|
#ifndef EIGEN_SPARSE_MODULE_H
|
|
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
|
2012-10-05 09:27:34 +02:00
|
|
|
/** \defgroup Sparse_modules Sparse modules
|
2011-10-05 17:04:40 +02:00
|
|
|
*
|
2012-10-05 09:27:34 +02:00
|
|
|
* Meta-module including all related modules:
|
|
|
|
* - SparseCore
|
|
|
|
* - OrderingMethods
|
|
|
|
* - SparseCholesky
|
|
|
|
* - IterativeLinearSolvers
|
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"
|
|
|
|
#include "IterativeLinearSolvers"
|
2011-10-05 17:04:40 +02:00
|
|
|
|
|
|
|
#endif // EIGEN_SPARSE_MODULE_H
|
|
|
|
|