2008-06-23 21:25:22 +08:00
|
|
|
#ifndef EIGEN_SPARSE_MODULE_H
|
|
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
|
2013-07-02 21:08:12 +08:00
|
|
|
/** \defgroup Sparse_Module Sparse meta-module
|
2009-01-26 21:53:43 +08:00
|
|
|
*
|
2011-11-12 21:11:27 +08:00
|
|
|
* Meta-module including all related modules:
|
2013-07-02 21:08:12 +08:00
|
|
|
* - \ref SparseCore_Module
|
|
|
|
* - \ref OrderingMethods_Module
|
|
|
|
* - \ref SparseCholesky_Module
|
|
|
|
* - \ref SparseLU_Module
|
|
|
|
* - \ref SparseQR_Module
|
|
|
|
* - \ref IterativeLinearSolvers_Module
|
2009-01-26 21:53:43 +08:00
|
|
|
*
|
|
|
|
* \code
|
2010-06-18 17:28:30 +08:00
|
|
|
* #include <Eigen/Sparse>
|
2009-01-26 21:53:43 +08:00
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "SparseCore"
|
|
|
|
#include "OrderingMethods"
|
|
|
|
#include "SparseCholesky"
|
2013-03-14 01:01:47 +08:00
|
|
|
#include "SparseLU"
|
|
|
|
#include "SparseQR"
|
2011-11-12 21:11:27 +08:00
|
|
|
#include "IterativeLinearSolvers"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
2008-06-23 21:25:22 +08:00
|
|
|
#endif // EIGEN_SPARSE_MODULE_H
|
2009-12-02 07:00:29 +08:00
|
|
|
|