added Cholesky module

This commit is contained in:
Gael Guennebaud
2008-04-27 10:57:32 +00:00
parent 1ec2d21ca5
commit 4ffffa670e
7 changed files with 384 additions and 22 deletions

View File

@@ -204,17 +204,18 @@ class EigenTest : public QObject
EigenTest(int repeat) : m_repeat(repeat) {}
private slots:
void testBasicStuff();
void testLinearStructure();
void testProduct();
void testAdjoint();
void testSubmatrices();
void testMiscMatrices();
void testSmallVectors();
void testMap();
void testCwiseops();
void testDeterminant();
void testTriangular();
// void testBasicStuff();
// void testLinearStructure();
// void testProduct();
// void testAdjoint();
// void testSubmatrices();
// void testMiscMatrices();
// void testSmallVectors();
// void testMap();
// void testCwiseops();
// void testDeterminant();
// void testTriangular();
void testCholesky();
protected:
int m_repeat;
};