From: Wolfgang Bangerth Date: Fri, 7 Sep 2012 02:31:03 +0000 (+0000) Subject: Increase precision even more. There are still numbers that are printed as 0.xxxx7... X-Git-Tag: v8.0.0~2161 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=88cf2caa6438638d0e4f37652108b0d79a5f75ba;p=dealii.git 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 --- 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); } }