test binary now computes average errors of the differents cholesky factorization methods over random covariance matrices
This commit is contained in:
parent
17ce8a90e3
commit
06100a6b57
2 changed files with 130 additions and 44 deletions
|
|
@ -58,7 +58,11 @@ public:
|
|||
class Cholesky
|
||||
{
|
||||
public:
|
||||
//! The covariance-matrix is symetric
|
||||
typedef ublas::symmetric_matrix< AtomType, ublas::lower > CovarMat;
|
||||
|
||||
//! The factorization matrix is triangular
|
||||
// FIXME check if triangular types behaviour is like having 0
|
||||
typedef ublas::matrix< AtomType > FactorMat;
|
||||
|
||||
enum Method {
|
||||
|
|
|
|||
Reference in a new issue