Fighting for a green dashboard! Next warning's gone.

This commit is contained in:
Hauke Heibel 2010-06-08 16:02:22 +02:00
parent 4c5778d29d
commit 1c9b7a8d9f

View File

@ -120,7 +120,7 @@ template<typename MatrixType> void lu_invertible()
MatrixType m1(size, size), m2(size, size), m3(size, size);
FullPivLU<MatrixType> lu;
lu.setThreshold(0.01);
lu.setThreshold(RealScalar(0.01));
do {
m1 = MatrixType::Random(size,size);
lu.compute(m1);