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, 3 insertions, 3 deletions
diff --git a/test/product_syrk.cpp b/test/product_syrk.cpp
index 18cdda152..495da7df3 100644
--- a/test/product_syrk.cpp
+++ b/test/product_syrk.cpp
@@ -75,11 +75,11 @@ void test_product_syrk()
for(int i = 0; i < g_repeat ; i++)
{
int s;
- s = ei_random<int>(10,320);
+ s = ei_random<int>(1,320);
CALL_SUBTEST_1( syrk(MatrixXf(s, s)) );
- s = ei_random<int>(10,320);
+ s = ei_random<int>(1,320);
CALL_SUBTEST_2( syrk(MatrixXd(s, s)) );
- s = ei_random<int>(10,320);
+ s = ei_random<int>(1,320);
CALL_SUBTEST_3( syrk(MatrixXcd(s, s)) );
}
}