aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-10-07 15:41:22 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-10-07 15:41:22 +0200
commit41cc1f9033e7a316834b409eb2c6db69fd5de56d (patch)
tree5333fb18469b559d5db85ce56cc62c49fb440ab6 /Eigen/src/Core/Product.h
parentca0dd7ae26cfbfdc16f23b46a016f401e3db4e5c (diff)
Remove debuging prod() and lazyprod() function, plus some cleaning in noalias assignment
Diffstat (limited to 'Eigen/src/Core/Product.h')
-rw-r--r--Eigen/src/Core/Product.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/Eigen/src/Core/Product.h b/Eigen/src/Core/Product.h
index b79236f15..fdd2fed3f 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -217,29 +217,6 @@ class ProductImpl<Lhs,Rhs,Option,Dense>
};
-/***************************************************************************
-* Implementation of matrix base methods
-***************************************************************************/
-
-
-/** \internal used to test the evaluator only
- */
-template<typename Lhs,typename Rhs>
-const Product<Lhs,Rhs>
-prod(const Lhs& lhs, const Rhs& rhs)
-{
- return Product<Lhs,Rhs>(lhs,rhs);
-}
-
-/** \internal used to test the evaluator only
- */
-template<typename Lhs,typename Rhs>
-const Product<Lhs,Rhs,LazyProduct>
-lazyprod(const Lhs& lhs, const Rhs& rhs)
-{
- return Product<Lhs,Rhs,LazyProduct>(lhs,rhs);
-}
-
} // end namespace Eigen
#endif // EIGEN_PRODUCT_H