From b2b8c6a89ca051e87b0e6da3c685f68f617662d2 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 27 Jan 2011 12:04:26 -0500 Subject: dot() now always uses eigen3 convention, even in eigen2 support mode, even stage 10. Didn't have a choice as lots of eigen code is using it. --- test/eigen2/eigen2_mixingtypes.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/eigen2/eigen2_mixingtypes.cpp') diff --git a/test/eigen2/eigen2_mixingtypes.cpp b/test/eigen2/eigen2_mixingtypes.cpp index 3721a0047..1349cb67c 100644 --- a/test/eigen2/eigen2_mixingtypes.cpp +++ b/test/eigen2/eigen2_mixingtypes.cpp @@ -74,9 +74,9 @@ template void mixingtypes(int size = SizeAtCompileType) VERIFY_RAISES_ASSERT(mcf*vcd); VERIFY_RAISES_ASSERT(vcf = mf*vf); - vf.dot(vf); - VERIFY_RAISES_ASSERT(vd.dot(vf)); - VERIFY_RAISES_ASSERT(vcf.dot(vf)); // yeah eventually we should allow this but i'm too lazy to make that change now in Dot.h + vf.eigen2_dot(vf); + VERIFY_RAISES_ASSERT(vd.eigen2_dot(vf)); + VERIFY_RAISES_ASSERT(vcf.eigen2_dot(vf)); // yeah eventually we should allow this but i'm too lazy to make that change now in Dot.h } // especially as that might be rewritten as cwise product .sum() which would make that automatic. void test_eigen2_mixingtypes() -- cgit v1.2.3