aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_symm.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-07-07 10:50:40 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-07-07 10:50:40 +0200
commit55495dcbaefbd25d8d97a260ca2de921357a137c (patch)
tree473b876abd4fbaab202cfec686a8d5cdc945d467 /test/product_symm.cpp
parente38fc9692dfac3596331c6f7b9e50a0fb7dbcfe9 (diff)
extend product unit tests
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)) ));
}
}