2008-06-23 21:25:22 +08:00
|
|
|
#ifndef EIGEN_SPARSE_MODULE_H
|
|
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
|
2011-11-12 21:11:27 +08:00
|
|
|
/** \defgroup Sparse_modules Sparse modules
|
2009-01-26 21:53:43 +08:00
|
|
|
*
|
2011-11-12 21:11:27 +08:00
|
|
|
* Meta-module including all related modules:
|
|
|
|
* - SparseCore
|
|
|
|
* - OrderingMethods
|
|
|
|
* - SparseCholesky
|
|
|
|
* - IterativeLinearSolvers
|
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"
|
|
|
|
#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
|
|
|
|