eigen/Eigen/Sparse

28 lines
518 B
Plaintext
Raw Normal View History

#ifndef EIGEN_SPARSE_MODULE_H
#define EIGEN_SPARSE_MODULE_H
2013-01-05 23:37:11 +08:00
/** defgroup Sparse_modules Sparse modules
*
* Meta-module including all related modules:
* - SparseCore
* - OrderingMethods
* - SparseCholesky
2013-03-14 01:01:47 +08:00
* - SparseLU
* - SparseQR
* - IterativeLinearSolvers
*
* \code
* #include <Eigen/Sparse>
* \endcode
*/
#include "SparseCore"
#include "OrderingMethods"
#include "SparseCholesky"
2013-03-14 01:01:47 +08:00
#include "SparseLU"
#include "SparseQR"
#include "IterativeLinearSolvers"
#endif // EIGEN_SPARSE_MODULE_H