diff options
author | Gael Guennebaud <g.gael@free.fr> | 2009-02-06 14:01:01 +0000 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2009-02-06 14:01:01 +0000 |
commit | 19b035ee11093965387833ea7baece5e8f571602 (patch) | |
tree | 18dc52723cc589ccce74eaaeee3000da86f40ffc /Eigen/src | |
parent | cc90495e3091ef68927c8d3f1999fc618aec0c77 (diff) |
s/cholesky/llt in precompiled lib and BTL
Diffstat (limited to 'Eigen/src')
-rw-r--r-- | Eigen/src/Cholesky/LDLT.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Cholesky/LDLT.h b/Eigen/src/Cholesky/LDLT.h index eeccf9725..c9f49e896 100644 --- a/Eigen/src/Cholesky/LDLT.h +++ b/Eigen/src/Cholesky/LDLT.h @@ -132,7 +132,7 @@ void LDLT<MatrixType>::compute(const MatrixType& a) return; } - RealScalar cutoff, biggest_in_corner; + RealScalar cutoff = 0, biggest_in_corner; // By using a temorary, packet-aligned products are guarenteed. In the LLT // case this is unnecessary because the diagonal is included and will always |