aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/products
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-02-09 10:02:26 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-02-09 10:02:26 +0100
commit0398e21198caaf7206851a9081033cddb0797d47 (patch)
tree2a79b2bdc3b535d897181ff9b20f327f9b49d121 /Eigen/src/Core/products
parentc076fec7340c35120f807d7a5fd7111064a30737 (diff)
s/UnrolledProduct/CoeffBasedProduct
Diffstat (limited to 'Eigen/src/Core/products')
-rw-r--r--Eigen/src/Core/products/GeneralCoeffBased.h (renamed from Eigen/src/Core/products/GeneralUnrolled.h)6
1 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/src/Core/products/GeneralUnrolled.h b/Eigen/src/Core/products/GeneralCoeffBased.h
index 32aa3afe6..0cca2d417 100644
--- a/Eigen/src/Core/products/GeneralUnrolled.h
+++ b/Eigen/src/Core/products/GeneralCoeffBased.h
@@ -43,7 +43,7 @@ template<int StorageOrder, int Index, typename Lhs, typename Rhs, typename Packe
struct ei_product_packet_impl;
template<typename LhsNested, typename RhsNested>
-struct ei_traits<GeneralProduct<LhsNested,RhsNested,UnrolledProduct> >
+struct ei_traits<GeneralProduct<LhsNested,RhsNested,CoeffBasedProduct> >
{
typedef DenseStorageMatrix DenseStorageType;
typedef typename ei_cleantype<LhsNested>::type _LhsNested;
@@ -98,9 +98,9 @@ struct ei_traits<GeneralProduct<LhsNested,RhsNested,UnrolledProduct> >
};
};
-template<typename LhsNested, typename RhsNested> class GeneralProduct<LhsNested,RhsNested,UnrolledProduct>
+template<typename LhsNested, typename RhsNested> class GeneralProduct<LhsNested,RhsNested,CoeffBasedProduct>
: ei_no_assignment_operator,
- public MatrixBase<GeneralProduct<LhsNested, RhsNested, UnrolledProduct> >
+ public MatrixBase<GeneralProduct<LhsNested, RhsNested, CoeffBasedProduct> >
{
public: