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.
26 lines
624 B
26 lines
624 B
#ifndef EIGEN_KRONECKER_PRODUCT_MODULE_H
|
|
#define EIGEN_KRONECKER_PRODUCT_MODULE_H
|
|
|
|
#include "../../Eigen/Core"
|
|
|
|
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
|
|
|
namespace Eigen {
|
|
|
|
/** \ingroup Unsupported_modules
|
|
* \defgroup KroneckerProduct_Module KroneckerProduct module
|
|
*
|
|
* This module contains an experimental Kronecker product implementation.
|
|
*
|
|
* \code
|
|
* #include <Eigen/KroneckerProduct>
|
|
* \endcode
|
|
*/
|
|
|
|
} // namespace Eigen
|
|
|
|
#include "src/KroneckerProduct/KroneckerTensorProduct.h"
|
|
|
|
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
|
|
|
#endif // EIGEN_KRONECKER_PRODUCT_MODULE_H
|