blob: 7cc9c09133af68d0723cd8ac0442a8775c01c5a9 [file] [log] [blame]
Narayan Kamathc981c482012-11-02 10:59:05 +00001#ifndef EIGEN_SPARSE_MODULE_H
2#define EIGEN_SPARSE_MODULE_H
3
Carlos Hernandez7faaa9f2014-08-05 17:53:32 -07004/** \defgroup Sparse_Module Sparse meta-module
Narayan Kamathc981c482012-11-02 10:59:05 +00005 *
6 * Meta-module including all related modules:
Carlos Hernandez7faaa9f2014-08-05 17:53:32 -07007 * - \ref SparseCore_Module
8 * - \ref OrderingMethods_Module
9 * - \ref SparseCholesky_Module
10 * - \ref SparseLU_Module
11 * - \ref SparseQR_Module
12 * - \ref IterativeLinearSolvers_Module
Narayan Kamathc981c482012-11-02 10:59:05 +000013 *
14 * \code
15 * #include <Eigen/Sparse>
16 * \endcode
17 */
18
19#include "SparseCore"
20#include "OrderingMethods"
21#include "SparseCholesky"
Carlos Hernandez7faaa9f2014-08-05 17:53:32 -070022#include "SparseLU"
23#include "SparseQR"
Narayan Kamathc981c482012-11-02 10:59:05 +000024#include "IterativeLinearSolvers"
25
26#endif // EIGEN_SPARSE_MODULE_H
27