From a504b6e88152d88dba936bc74e449f2f281b84e2 Mon Sep 17 00:00:00 2001 From: Mitchell-Lee-93 <56542570+Mitchell-Lee-93@users.noreply.github.com> Date: Wed, 4 Nov 2020 00:13:28 +0900 Subject: [PATCH] precision of tol for float has been changed --- matrix/PseudoInverse.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/PseudoInverse.hxx b/matrix/PseudoInverse.hxx index 99408f5e2f..a03184dc43 100644 --- a/matrix/PseudoInverse.hxx +++ b/matrix/PseudoInverse.hxx @@ -14,7 +14,7 @@ template void fullRankCholeskyTolerance(Type &tol) { - tol /= 1000000000; + tol /= 10000000; } template<> inline