fix trsolve

This commit is contained in:
Gael Guennebaud
2010-03-06 21:37:14 +01:00
parent 6f0b96dcf4
commit a7d199bf9a
4 changed files with 20 additions and 13 deletions

View File

@@ -77,6 +77,8 @@ void test_product_syrk()
s = ei_random<int>(10,320);
CALL_SUBTEST_1( syrk(MatrixXf(s, s)) );
s = ei_random<int>(10,320);
CALL_SUBTEST_2( syrk(MatrixXcd(s, s)) );
CALL_SUBTEST_2( syrk(MatrixXd(s, s)) );
s = ei_random<int>(10,320);
CALL_SUBTEST_3( syrk(MatrixXcd(s, s)) );
}
}