From 54238961d65ba96f1352feca1b3ae20d09362ce7 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 20 Jun 2008 12:38:03 +0000 Subject: * added a pseudo expression Array giving access to: - matrix-scalar addition/subtraction operators, e.g.: m.array() += 0.5; - matrix/matrix comparison operators, e.g.: if (m1.array() < m2.array()) {} * fix compilation issues with Transform and gcc < 4.1 --- test/linearstructure.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'test/linearstructure.cpp') diff --git a/test/linearstructure.cpp b/test/linearstructure.cpp index 02b77c0f0..4c2bdf620 100644 --- a/test/linearstructure.cpp +++ b/test/linearstructure.cpp @@ -94,6 +94,7 @@ void test_linearstructure() { for(int i = 0; i < g_repeat; i++) { CALL_SUBTEST( linearStructure(Matrix()) ); + CALL_SUBTEST( linearStructure(Matrix2f()) ); CALL_SUBTEST( linearStructure(Matrix4d()) ); CALL_SUBTEST( linearStructure(MatrixXcf(3, 3)) ); CALL_SUBTEST( linearStructure(MatrixXf(8, 12)) ); -- cgit v1.2.3