aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lu.cpp
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-06-08 16:02:22 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-06-08 16:02:22 +0200
commit1c9b7a8d9f23afae703bf525bd4f68c9cb8f61c1 (patch)
tree4354da5b19e34bb363b44f8eb0aeafa32e66d3e4 /test/lu.cpp
parent4c5778d29da3ddb21b3f1c64b8179571c7ba8847 (diff)
Fighting for a green dashboard! Next warning's gone.
Diffstat (limited to 'test/lu.cpp')
-rw-r--r--test/lu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lu.cpp b/test/lu.cpp
index 22dca76d2..9aa793e00 100644
--- a/test/lu.cpp
+++ b/test/lu.cpp
@@ -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);