Householder 874 B

123456789101112131415161718192021222324252627282930
  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_HOUSEHOLDER_MODULE_H
  8. #define EIGEN_HOUSEHOLDER_MODULE_H
  9. #include "Core"
  10. #include "src/Core/util/DisableStupidWarnings.h"
  11. /** \defgroup Householder_Module Householder module
  12. * This module provides Householder transformations.
  13. *
  14. * \code
  15. * #include <Eigen/Householder>
  16. * \endcode
  17. */
  18. #include "src/Householder/Householder.h"
  19. #include "src/Householder/HouseholderSequence.h"
  20. #include "src/Householder/BlockHouseholder.h"
  21. #include "src/Core/util/ReenableStupidWarnings.h"
  22. #endif // EIGEN_HOUSEHOLDER_MODULE_H
  23. /* vim: set filetype=cpp et sw=2 ts=2 ai: */