forgot to include the update of the qr test

This commit is contained in:
Gael Guennebaud 2009-01-20 10:38:56 +00:00
parent 3e5b3a33fa
commit 3134d5290b

View File

@ -66,4 +66,13 @@ void test_qr()
CALL_SUBTEST( qr(MatrixXcd(5,5)) );
CALL_SUBTEST( qr(MatrixXcd(7,3)) );
}
// small isFullRank test
{
Matrix3d mat;
mat << 1, 45, 1, 2, 2, 2, 1, 2, 3;
VERIFY(mat.qr().isFullRank());
mat << 1, 1, 1, 2, 2, 2, 1, 2, 3;
VERIFY(!mat.qr().isFullRank());
}
}