uncomment tests (sorry)

This commit is contained in:
Gael Guennebaud 2010-07-16 11:50:40 +02:00
parent 5ac00624ed
commit 7e0b7b1f25

View File

@ -115,15 +115,15 @@ template<typename MatrixType> void cholesky(const MatrixType& m)
void test_cholesky() void test_cholesky()
{ {
// for(int i = 0; i < g_repeat; i++) { for(int i = 0; i < g_repeat; i++) {
// CALL_SUBTEST( cholesky(Matrix<double,1,1>()) ); CALL_SUBTEST( cholesky(Matrix<double,1,1>()) );
// CALL_SUBTEST( cholesky(Matrix2d()) ); CALL_SUBTEST( cholesky(Matrix2d()) );
// CALL_SUBTEST( cholesky(Matrix3f()) ); CALL_SUBTEST( cholesky(Matrix3f()) );
// CALL_SUBTEST( cholesky(Matrix4d()) ); CALL_SUBTEST( cholesky(Matrix4d()) );
// CALL_SUBTEST( cholesky(MatrixXcd(7,7)) ); CALL_SUBTEST( cholesky(MatrixXcd(7,7)) );
// CALL_SUBTEST( cholesky(MatrixXf(17,17)) ); CALL_SUBTEST( cholesky(MatrixXf(17,17)) );
// CALL_SUBTEST( cholesky(MatrixXd(33,33)) ); CALL_SUBTEST( cholesky(MatrixXd(33,33)) );
// } }
MatrixXf m = MatrixXf::Zero(10,10); MatrixXf m = MatrixXf::Zero(10,10);
VectorXf b = VectorXf::Zero(10); VectorXf b = VectorXf::Zero(10);