SparseCholesky 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // Copyright (C) 2008-2013 Gael Guennebaud <gael.guennebaud@inria.fr>
  5. //
  6. // This Source Code Form is subject to the terms of the Mozilla
  7. // Public License v. 2.0. If a copy of the MPL was not distributed
  8. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  9. #ifndef EIGEN_SPARSECHOLESKY_MODULE_H
  10. #define EIGEN_SPARSECHOLESKY_MODULE_H
  11. #include "SparseCore"
  12. #include "OrderingMethods"
  13. #include "src/Core/util/DisableStupidWarnings.h"
  14. /**
  15. * \defgroup SparseCholesky_Module SparseCholesky module
  16. *
  17. * This module currently provides two variants of the direct sparse Cholesky decomposition for selfadjoint (hermitian) matrices.
  18. * Those decompositions are accessible via the following classes:
  19. * - SimplicialLLt,
  20. * - SimplicialLDLt
  21. *
  22. * Such problems can also be solved using the ConjugateGradient solver from the IterativeLinearSolvers module.
  23. *
  24. * \code
  25. * #include <Eigen/SparseCholesky>
  26. * \endcode
  27. */
  28. #include "src/SparseCholesky/SimplicialCholesky.h"
  29. #include "src/SparseCholesky/SimplicialCholesky_impl.h"
  30. #include "src/Core/util/ReenableStupidWarnings.h"
  31. #endif // EIGEN_SPARSECHOLESKY_MODULE_H