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.

34 lines
892 B

  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla
  6. // Public License v. 2.0. If a copy of the MPL was not distributed
  7. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  8. #ifndef EIGEN_KRONECKER_PRODUCT_MODULE_H
  9. #define EIGEN_KRONECKER_PRODUCT_MODULE_H
  10. #include "../../Eigen/Core"
  11. #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
  12. namespace Eigen {
  13. /**
  14. * \defgroup KroneckerProduct_Module KroneckerProduct module
  15. *
  16. * This module contains an experimental Kronecker product implementation.
  17. *
  18. * \code
  19. * #include <Eigen/KroneckerProduct>
  20. * \endcode
  21. */
  22. } // namespace Eigen
  23. #include "src/KroneckerProduct/KroneckerTensorProduct.h"
  24. #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
  25. #endif // EIGEN_KRONECKER_PRODUCT_MODULE_H