aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_symm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/product_symm.cpp')
-rw-r--r--test/product_symm.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/product_symm.cpp b/test/product_symm.cpp
index ed32fe5e2..5064237ab 100644
--- a/test/product_symm.cpp
+++ b/test/product_symm.cpp
@@ -116,10 +116,12 @@ void test_product_symm()
{
CALL_SUBTEST_1(( symm<float,Dynamic,Dynamic>(ei_random<int>(1,320),ei_random<int>(1,320)) ));
CALL_SUBTEST_2(( symm<double,Dynamic,Dynamic>(ei_random<int>(1,320),ei_random<int>(1,320)) ));
- CALL_SUBTEST_3(( symm<std::complex<double>,Dynamic,Dynamic>(ei_random<int>(1,320),ei_random<int>(1,320)) ));
+ CALL_SUBTEST_3(( symm<std::complex<float>,Dynamic,Dynamic>(ei_random<int>(1,200),ei_random<int>(1,200)) ));
+ CALL_SUBTEST_4(( symm<std::complex<double>,Dynamic,Dynamic>(ei_random<int>(1,200),ei_random<int>(1,200)) ));
- CALL_SUBTEST_4(( symm<float,Dynamic,1>(ei_random<int>(1,320)) ));
- CALL_SUBTEST_5(( symm<double,Dynamic,1>(ei_random<int>(1,320)) ));
- CALL_SUBTEST_6(( symm<std::complex<double>,Dynamic,1>(ei_random<int>(1,320)) ));
+ CALL_SUBTEST_5(( symm<float,Dynamic,1>(ei_random<int>(1,320)) ));
+ CALL_SUBTEST_6(( symm<double,Dynamic,1>(ei_random<int>(1,320)) ));
+ CALL_SUBTEST_7(( symm<std::complex<float>,Dynamic,1>(ei_random<int>(1,320)) ));
+ CALL_SUBTEST_8(( symm<std::complex<double>,Dynamic,1>(ei_random<int>(1,320)) ));
}
}