aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/linearstructure.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-11-20 15:29:32 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-11-20 15:29:32 +0100
commit4522ffd17c9c6cb74049263ea9de0f8a9d35e2b2 (patch)
treedfabfcc27798f3de8025c80f899bfb67df74ac8d /test/linearstructure.cpp
parent4fc36079e778a4944af27f1d71e41fa45bae197e (diff)
Add regression using test for array<complex>/real
Diffstat (limited to 'test/linearstructure.cpp')
-rw-r--r--test/linearstructure.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/linearstructure.cpp b/test/linearstructure.cpp
index 3c7cdbe41..292f33969 100644
--- a/test/linearstructure.cpp
+++ b/test/linearstructure.cpp
@@ -108,9 +108,11 @@ void test_linearstructure()
CALL_SUBTEST_7( linearStructure(MatrixXi (internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
CALL_SUBTEST_8( linearStructure(MatrixXcd(internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2), internal::random<int>(1,EIGEN_TEST_MAX_SIZE/2))) );
CALL_SUBTEST_9( linearStructure(ArrayXXf (internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
+ CALL_SUBTEST_10( linearStructure(ArrayXXcf (internal::random<int>(1,EIGEN_TEST_MAX_SIZE), internal::random<int>(1,EIGEN_TEST_MAX_SIZE))) );
- CALL_SUBTEST_10( real_complex<Matrix4cd>() );
- CALL_SUBTEST_10( real_complex<MatrixXcf>(10,10) );
+ CALL_SUBTEST_11( real_complex<Matrix4cd>() );
+ CALL_SUBTEST_11( real_complex<MatrixXcf>(10,10) );
+ CALL_SUBTEST_11( real_complex<ArrayXXcf>(10,10) );
}
#ifdef EIGEN_TEST_PART_4