aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_symm.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-08-11 15:15:06 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-08-11 15:15:06 +0200
commitafbd73b5cdc1ce9b8ae54e9dd08332c870cf54d2 (patch)
tree1a7803061dfd11097b94f1e1a54d374d254c3867 /test/product_symm.cpp
parenta4f664251863907604d43be70a41cc4c1dddd42a (diff)
overload operartor* with a ProductBase such that "scalar * (mat * mat)" is optimized
as one could naturally expect
Diffstat (limited to 'test/product_symm.cpp')
-rw-r--r--test/product_symm.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/product_symm.cpp b/test/product_symm.cpp
index 88bac878b..1300928a2 100644
--- a/test/product_symm.cpp
+++ b/test/product_symm.cpp
@@ -94,6 +94,11 @@ template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, in
VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<LowerTriangular>() * (s2*rhs3).conjugate(),
rhs13 = (s1*m1.adjoint()) * (s2*rhs3).conjugate());
+
+ m2 = m1.template triangularView<UpperTriangular>(); rhs13 = rhs12;
+ VERIFY_IS_APPROX(rhs12 += (s1 * ((m2.adjoint()).template selfadjointView<LowerTriangular>() * (s2*rhs3).conjugate())).lazy(),
+ rhs13 += (s1*m1.adjoint()) * (s2*rhs3).conjugate());
+
// test matrix * selfadjoint
symm_extra<OtherSize>::run(m1,m2,rhs2,rhs22,rhs23,s1,s2);