From 227fa72929e5214b6b3b0c8ca12ab9aeb64dffbc Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Tue, 7 Nov 2017 10:27:31 +0100 Subject: [PATCH] lower the tolerance for full_matrix_10 test with float numbers --- tests/full_matrix/full_matrix_10.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/full_matrix/full_matrix_10.cc b/tests/full_matrix/full_matrix_10.cc index 8860f2a3f3..654b59dfae 100644 --- a/tests/full_matrix/full_matrix_10.cc +++ b/tests/full_matrix/full_matrix_10.cc @@ -41,7 +41,7 @@ void test() D(i,j) += A(i,k) * B(j,k); C.add(-1., D); - deallog << "Difference: " << filter_out_small_numbers(C.l1_norm(), std::numeric_limits::epsilon()*50.) << std::endl; + deallog << "Difference: " << filter_out_small_numbers(C.l1_norm(), std::numeric_limits::epsilon()*100.) << std::endl; } int main() -- 2.39.5