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.

45 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_QR_MODULE_H
  8. #define EIGEN_QR_MODULE_H
  9. #include "Core"
  10. #include "src/Core/util/DisableStupidWarnings.h"
  11. #include "Cholesky"
  12. #include "Jacobi"
  13. #include "Householder"
  14. /** \defgroup QR_Module QR module
  15. *
  16. *
  17. *
  18. * This module provides various QR decompositions
  19. * This module also provides some MatrixBase methods, including:
  20. * - MatrixBase::householderQr()
  21. * - MatrixBase::colPivHouseholderQr()
  22. * - MatrixBase::fullPivHouseholderQr()
  23. *
  24. * \code
  25. * #include <Eigen/QR>
  26. * \endcode
  27. */
  28. #include "src/QR/HouseholderQR.h"
  29. #include "src/QR/FullPivHouseholderQR.h"
  30. #include "src/QR/ColPivHouseholderQR.h"
  31. #ifdef EIGEN_USE_LAPACKE
  32. #include "src/QR/HouseholderQR_MKL.h"
  33. #include "src/QR/ColPivHouseholderQR_MKL.h"
  34. #endif
  35. #include "src/Core/util/ReenableStupidWarnings.h"
  36. #endif // EIGEN_QR_MODULE_H
  37. /* vim: set filetype=cpp et sw=2 ts=2 ai: */