mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-14 04:35:57 +08:00
uncomment tests (sorry)
This commit is contained in:
parent
5ac00624ed
commit
7e0b7b1f25
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user