aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/nomalloc.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-12-17 10:00:35 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-12-17 10:00:35 +0100
commit34c95029cad15201efb161a59d72f36cbf997f16 (patch)
tree3db94cfad47145233e32a9461c3bf199315bd6cd /test/nomalloc.cpp
parent20339033764ed7c116b77f5593315a1d31c0a40b (diff)
a couple of fixes and cleaning
Diffstat (limited to 'test/nomalloc.cpp')
-rw-r--r--test/nomalloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp
index f228519bf..0452de78d 100644
--- a/test/nomalloc.cpp
+++ b/test/nomalloc.cpp
@@ -64,7 +64,7 @@ template<typename MatrixType> void nomalloc(const MatrixType& m)
VERIFY_IS_APPROX((m1+m2)*s1, s1*m1+s1*m2);
VERIFY_IS_APPROX((m1+m2)(r,c), (m1(r,c))+(m2(r,c)));
- VERIFY_IS_APPROX(m1.cwiseProduct(m1.block(0,0,rows,cols)), (m1.array()*m1.array()));
+ VERIFY_IS_APPROX(m1.cwiseProduct(m1.block(0,0,rows,cols)), (m1.array()*m1.array()).asMatrix());
if (MatrixType::RowsAtCompileTime<EIGEN_CACHEFRIENDLY_PRODUCT_THRESHOLD) {
// If the matrices are too large, we have better to use the optimized GEMM
// routines which allocates temporaries. However, on some platforms