Sparse module:

* several fixes (transpose, matrix product, etc...)
 * Added a basic cholesky factorization
 * Added a low level hybrid dense/sparse vector class
   to help writing code involving intensive read/write
   in a fixed vector. It is currently used to implement
   the matrix product itself as well as in the Cholesky
   factorization.
This commit is contained in:
Gael Guennebaud
2008-10-04 14:23:00 +00:00
parent 1fc503e3ce
commit 068ff3370d
8 changed files with 859 additions and 103 deletions

View File

@@ -59,7 +59,7 @@ template<typename MatrixType> class Cholesky
};
public:
Cholesky(const MatrixType& matrix)
: m_matrix(matrix.rows(), matrix.cols())
{