Sparse 919 B

123456789101112131415161718192021222324252627282930313233343536
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // This Source Code Form is subject to the terms of the Mozilla
  5. // Public License v. 2.0. If a copy of the MPL was not distributed
  6. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  7. #ifndef EIGEN_SPARSE_MODULE_H
  8. #define EIGEN_SPARSE_MODULE_H
  9. /** \defgroup Sparse_Module Sparse meta-module
  10. *
  11. * Meta-module including all related modules:
  12. * - \ref SparseCore_Module
  13. * - \ref OrderingMethods_Module
  14. * - \ref SparseCholesky_Module
  15. * - \ref SparseLU_Module
  16. * - \ref SparseQR_Module
  17. * - \ref IterativeLinearSolvers_Module
  18. *
  19. \code
  20. #include <Eigen/Sparse>
  21. \endcode
  22. */
  23. #include "SparseCore"
  24. #include "OrderingMethods"
  25. #ifndef EIGEN_MPL2_ONLY
  26. #include "SparseCholesky"
  27. #endif
  28. #include "SparseLU"
  29. #include "SparseQR"
  30. #include "IterativeLinearSolvers"
  31. #endif // EIGEN_SPARSE_MODULE_H