aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_large.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-24 16:00:53 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-24 16:00:53 +0000
commitaeca7a63f4338fac89ed374b0acfde21e3af5fc6 (patch)
tree0dfcd0fa4a41199e92b292fb9d079072eb28fbc0 /test/product_large.cpp
parentbf17467ce0418e0e9b759899f1af713f2376be1f (diff)
nothing to see here
Diffstat (limited to 'test/product_large.cpp')
-rw-r--r--test/product_large.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/product_large.cpp b/test/product_large.cpp
index 7342dbd8a..b85fd0954 100644
--- a/test/product_large.cpp
+++ b/test/product_large.cpp
@@ -27,10 +27,10 @@
void test_product_large()
{
for(int i = 0; i < g_repeat; i++) {
-// CALL_SUBTEST( product(MatrixXf(ei_random<int>(1,320), ei_random<int>(1,320))) );
+ CALL_SUBTEST( product(MatrixXf(ei_random<int>(1,320), ei_random<int>(1,320))) );
CALL_SUBTEST( product(MatrixXd(ei_random<int>(1,320), ei_random<int>(1,320))) );
-// CALL_SUBTEST( product(MatrixXi(ei_random<int>(1,320), ei_random<int>(1,320))) );
-// CALL_SUBTEST( product(MatrixXcf(ei_random<int>(1,50), ei_random<int>(1,50))) );
-// CALL_SUBTEST( product(Matrix<float,Dynamic,Dynamic,RowMajor>(ei_random<int>(1,320), ei_random<int>(1,320))) );
+ CALL_SUBTEST( product(MatrixXi(ei_random<int>(1,320), ei_random<int>(1,320))) );
+ CALL_SUBTEST( product(MatrixXcf(ei_random<int>(1,50), ei_random<int>(1,50))) );
+ CALL_SUBTEST( product(Matrix<float,Dynamic,Dynamic,RowMajor>(ei_random<int>(1,320), ei_random<int>(1,320))) );
}
}