aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/product_syrk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/product_syrk.cpp')
-rw-r--r--test/product_syrk.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/product_syrk.cpp b/test/product_syrk.cpp
index 83e874541..575b21cac 100644
--- a/test/product_syrk.cpp
+++ b/test/product_syrk.cpp
@@ -79,7 +79,9 @@ void test_product_syrk()
CALL_SUBTEST_1( syrk(MatrixXf(s, s)) );
s = ei_random<int>(1,320);
CALL_SUBTEST_2( syrk(MatrixXd(s, s)) );
- s = ei_random<int>(1,320);
- CALL_SUBTEST_3( syrk(MatrixXcd(s, s)) );
+ s = ei_random<int>(1,200);
+ CALL_SUBTEST_3( syrk(MatrixXcf(s, s)) );
+ s = ei_random<int>(1,200);
+ CALL_SUBTEST_4( syrk(MatrixXcd(s, s)) );
}
}