Home | History | Annotate | Download | only in Eigen
      1 #ifndef EIGEN_KRONECKER_PRODUCT_MODULE_H
      2 #define EIGEN_KRONECKER_PRODUCT_MODULE_H
      3 
      4 #include "../../Eigen/Core"
      5 
      6 #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
      7 
      8 namespace Eigen {
      9 
     10 /** \ingroup Unsupported_modules
     11   * \defgroup KroneckerProduct_Module KroneckerProduct module
     12   *
     13   * This module contains an experimental Kronecker product implementation.
     14   *
     15   * \code
     16   * #include <Eigen/KroneckerProduct>
     17   * \endcode
     18   */
     19 
     20 } // namespace Eigen
     21 
     22 #include "src/KroneckerProduct/KroneckerTensorProduct.h"
     23 
     24 #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
     25 
     26 #endif // EIGEN_KRONECKER_PRODUCT_MODULE_H
     27