From b09085228a92e093fac71b4729c22e25b252d326 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 21 May 2008 14:44:53 +0000 Subject: [PATCH] Fix formatting. git-svn-id: https://svn.dealii.org/trunk@16155 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-33/step-33.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/examples/step-33/step-33.cc b/deal.II/examples/step-33/step-33.cc index 6880bad58a..999f1e1af6 100644 --- a/deal.II/examples/step-33/step-33.cc +++ b/deal.II/examples/step-33/step-33.cc @@ -3045,7 +3045,7 @@ void ConservationLaw::run () << std::endl << std::endl; - std::cout << " NonLin Res: Lin Iter Lin Res" << std::endl + std::cout << " NonLin Res Lin Iter Lin Res" << std::endl << " ______________________________________" << std::endl; // Then comes the inner Newton @@ -3105,7 +3105,7 @@ void ConservationLaw::run () const double res_norm = right_hand_side.l2_norm(); if (std::fabs(res_norm) < 1e-10) { - std::printf(" %-16.3e (converged)\n\n", res_norm); + std::printf(" %-16.3e (converged)\n\n", res_norm); break; } else @@ -3117,7 +3117,7 @@ void ConservationLaw::run () current_solution += newton_update; - std::printf(" %-16.3e %04d %-5.2e\n", + std::printf(" %-16.3e %04d %-5.2e\n", res_norm, convergence.first, convergence.second); } -- 2.39.5