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