From 88cf2caa6438638d0e4f37652108b0d79a5f75ba Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 7 Sep 2012 02:31:03 +0000 Subject: [PATCH] Increase precision even more. There are still numbers that are printed as 0.xxxx7 or 0.xxxx8 as they are 0.xxxx75. git-svn-id: https://svn.dealii.org/trunk@26246 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/fe/internals.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fe/internals.cc b/tests/fe/internals.cc index 780f123e7c..e61873413b 100644 --- a/tests/fe/internals.cc +++ b/tests/fe/internals.cc @@ -105,10 +105,10 @@ check_matrices (FiniteElement& fe, const char* name) { deallog << name << '<' << dim << '>' << " restriction " << i << std::endl; if (fe.isotropic_restriction_is_implemented()) - print_formatted (fe.get_restriction_matrix(i), 5, 7); + print_formatted (fe.get_restriction_matrix(i), 6, 8); deallog << name << '<' << dim << '>' << " embedding " << i << std::endl; if (fe.isotropic_prolongation_is_implemented()) - print_formatted (fe.get_prolongation_matrix(i), 5, 7); + print_formatted (fe.get_prolongation_matrix(i), 6, 8); } } -- 2.39.5