2008-06-23 13:25:22 +00:00
|
|
|
#ifndef EIGEN_SPARSE_MODULE_H
|
|
|
|
|
#define EIGEN_SPARSE_MODULE_H
|
|
|
|
|
|
2011-11-12 14:11:27 +01:00
|
|
|
/** \defgroup Sparse_modules Sparse modules
|
2009-01-26 13:53:43 +00:00
|
|
|
*
|
2011-11-12 14:11:27 +01:00
|
|
|
* Meta-module including all related modules:
|
|
|
|
|
* - SparseCore
|
|
|
|
|
* - OrderingMethods
|
|
|
|
|
* - SparseCholesky
|
|
|
|
|
* - IterativeLinearSolvers
|
2009-01-26 13:53:43 +00:00
|
|
|
*
|
|
|
|
|
* \code
|
2010-06-18 11:28:30 +02:00
|
|
|
* #include <Eigen/Sparse>
|
2009-01-26 13:53:43 +00:00
|
|
|
* \endcode
|
|
|
|
|
*/
|
|
|
|
|
|
2011-11-12 14:11:27 +01:00
|
|
|
#include "SparseCore"
|
|
|
|
|
#include "OrderingMethods"
|
|
|
|
|
#include "SparseCholesky"
|
|
|
|
|
#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
|
|
|
|