aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MatrixBase.h
diff options
context:
space:
mode:
authorGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-10-15 00:21:12 +0800
committerGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-10-15 00:21:12 +0800
commitc4b83461d97a2520fecc00f647ca2ae9c4bf04d2 (patch)
treee146e77321041b851ae70acd53da527d710645f0 /Eigen/src/Core/MatrixBase.h
parentf34db6578a36438c6d229a9be25378cfe6fab38b (diff)
Make kroneckerProduct take two arguments and return an expression, which is more straight-forward.
Diffstat (limited to 'Eigen/src/Core/MatrixBase.h')
-rw-r--r--Eigen/src/Core/MatrixBase.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h
index 7b8850eb7..25a26304f 100644
--- a/Eigen/src/Core/MatrixBase.h
+++ b/Eigen/src/Core/MatrixBase.h
@@ -165,6 +165,9 @@ template<typename Derived> class MatrixBase
template<typename ProductDerived, typename Lhs, typename Rhs>
Derived& lazyAssign(const MatrixPowerProductBase<ProductDerived, Lhs,Rhs>& other);
+
+ template<typename Lhs, typename Rhs>
+ Derived& lazyAssign(const KroneckerProduct<Lhs,Rhs>& other);
#endif // not EIGEN_PARSED_BY_DOXYGEN
template<typename OtherDerived>