You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB

  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_CHOLESKY_MODULE_H
  8. #define EIGEN_CHOLESKY_MODULE_H
  9. #include "Core"
  10. #include "src/Core/util/DisableStupidWarnings.h"
  11. /** \defgroup Cholesky_Module Cholesky module
  12. *
  13. *
  14. *
  15. * This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
  16. * Those decompositions are also accessible via the following methods:
  17. * - MatrixBase::llt()
  18. * - MatrixBase::ldlt()
  19. * - SelfAdjointView::llt()
  20. * - SelfAdjointView::ldlt()
  21. *
  22. * \code
  23. * #include <Eigen/Cholesky>
  24. * \endcode
  25. */
  26. #include "src/Cholesky/LLT.h"
  27. #include "src/Cholesky/LDLT.h"
  28. #ifdef EIGEN_USE_LAPACKE
  29. #include "src/Cholesky/LLT_MKL.h"
  30. #endif
  31. #include "src/Core/util/ReenableStupidWarnings.h"
  32. #endif // EIGEN_CHOLESKY_MODULE_H
  33. /* vim: set filetype=cpp et sw=2 ts=2 ai: */