Narayan Kamath | c981c48 | 2012-11-02 10:59:05 +0000 | [diff] [blame] | 1 | #ifndef EIGEN_SPARSE_MODULE_H |
| 2 | #define EIGEN_SPARSE_MODULE_H |
| 3 | |
| 4 | /** \defgroup Sparse_modules Sparse modules |
| 5 | * |
| 6 | * Meta-module including all related modules: |
| 7 | * - SparseCore |
| 8 | * - OrderingMethods |
| 9 | * - SparseCholesky |
| 10 | * - IterativeLinearSolvers |
| 11 | * |
| 12 | * \code |
| 13 | * #include <Eigen/Sparse> |
| 14 | * \endcode |
| 15 | */ |
| 16 | |
| 17 | #include "SparseCore" |
| 18 | #include "OrderingMethods" |
| 19 | #include "SparseCholesky" |
| 20 | #include "IterativeLinearSolvers" |
| 21 | |
| 22 | #endif // EIGEN_SPARSE_MODULE_H |
| 23 | |