From: Wolfgang Bangerth Date: Fri, 14 Sep 2001 13:26:52 +0000 (+0000) Subject: Write error in fixed notation, rather than in scientific. X-Git-Tag: v8.0.0~18785 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edf04e763ba69cc2b3910589ae26d2bbbaca7c29;p=dealii.git Write error in fixed notation, rather than in scientific. git-svn-id: https://svn.dealii.org/trunk@5013 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-11/step-11.cc b/deal.II/examples/step-11/step-11.cc index 7d734fe575..e2d56563a0 100644 --- a/deal.II/examples/step-11/step-11.cc +++ b/deal.II/examples/step-11/step-11.cc @@ -631,7 +631,7 @@ void LaplaceProblem::run () // write a table of results to the // screen: output_table.set_precision("|u|_1", 6); - output_table.set_scientific("error", true); + output_table.set_precision("error", 6); output_table.write_text (std::cout); std::cout << std::endl; };