Brian Silverman | 72890c2 | 2015-09-19 14:37:37 -0400 | [diff] [blame^] | 1 | #ifndef EIGEN_SPARSE_MODULE_H |
| 2 | #define EIGEN_SPARSE_MODULE_H |
| 3 | |
| 4 | /** \defgroup Sparse_Module Sparse meta-module |
| 5 | * |
| 6 | * Meta-module including all related modules: |
| 7 | * - \ref SparseCore_Module |
| 8 | * - \ref OrderingMethods_Module |
| 9 | * - \ref SparseCholesky_Module |
| 10 | * - \ref SparseLU_Module |
| 11 | * - \ref SparseQR_Module |
| 12 | * - \ref IterativeLinearSolvers_Module |
| 13 | * |
| 14 | * \code |
| 15 | * #include <Eigen/Sparse> |
| 16 | * \endcode |
| 17 | */ |
| 18 | |
| 19 | #include "SparseCore" |
| 20 | #include "OrderingMethods" |
| 21 | #include "SparseCholesky" |
| 22 | #include "SparseLU" |
| 23 | #include "SparseQR" |
| 24 | #include "IterativeLinearSolvers" |
| 25 | |
| 26 | #endif // EIGEN_SPARSE_MODULE_H |
| 27 | |