aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/map.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-07-19 00:09:01 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-07-19 00:09:01 +0000
commit22a816ade884e3eee6a2f6a25f342e6a0d3448a0 (patch)
treebecfc9016d9a7bdffdb30d15f99bf8aeed842a77 /test/map.cpp
parent62ec1dd616377721d8be414911721bdc8967d677 (diff)
* Fix a couple of issues related to the recent cache friendly products
* Improve the efficiency of matrix*vector in unaligned cases * Trivial fixes in the destructors of MatrixStorage * Removed the matrixNorm in test/product.cpp (twice faster and that assumed the matrix product was ok while checking that !!)
Diffstat (limited to 'test/map.cpp')
-rw-r--r--test/map.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/map.cpp b/test/map.cpp
index 1723a047c..39e40af15 100644
--- a/test/map.cpp
+++ b/test/map.cpp
@@ -38,7 +38,6 @@ template<typename VectorType> void tmap(const VectorType& m)
VectorType ma1 = Map<VectorType>(array1, size);
VectorType ma2 = Map<VectorType, Aligned>(array2, size);
VERIFY_IS_APPROX(ma1, ma2);
- VERIFY_IS_APPROX(ma1, VectorType(array2, size));
ei_aligned_free(array1);
ei_aligned_free(array2);
}