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.3 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 STORMEIGEN_LU_MODULE_H
  8. #define STORMEIGEN_LU_MODULE_H
  9. #include "Core"
  10. #include "src/Core/util/DisableStupidWarnings.h"
  11. /** \defgroup LU_Module LU module
  12. * This module includes %LU decomposition and related notions such as matrix inversion and determinant.
  13. * This module defines the following MatrixBase methods:
  14. * - MatrixBase::inverse()
  15. * - MatrixBase::determinant()
  16. *
  17. * \code
  18. * #include <StormEigen/LU>
  19. * \endcode
  20. */
  21. #include "src/misc/Kernel.h"
  22. #include "src/misc/Image.h"
  23. #include "src/LU/FullPivLU.h"
  24. #include "src/LU/PartialPivLU.h"
  25. #ifdef STORMEIGEN_USE_LAPACKE
  26. #include "src/LU/PartialPivLU_MKL.h"
  27. #endif
  28. #include "src/LU/Determinant.h"
  29. #include "src/LU/InverseImpl.h"
  30. // Use the SSE optimized version whenever possible. At the moment the
  31. // SSE version doesn't compile when AVX is enabled
  32. #if defined STORMEIGEN_VECTORIZE_SSE && !defined STORMEIGEN_VECTORIZE_AVX
  33. #include "src/LU/arch/Inverse_SSE.h"
  34. #endif
  35. #include "src/Core/util/ReenableStupidWarnings.h"
  36. #endif // STORMEIGEN_LU_MODULE_H
  37. /* vim: set filetype=cpp et sw=2 ts=2 ai: */