From: Wolfgang Bangerth Date: Tue, 15 Feb 2011 19:29:50 +0000 (+0000) Subject: Beautify output. X-Git-Tag: v8.0.0~4330 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be5696190bda15ad045f614de79a787fdf627768;p=dealii.git Beautify output. git-svn-id: https://svn.dealii.org/trunk@23372 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index d48e639048..59621e80cb 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -2820,6 +2820,8 @@ void BoussinesqFlowProblem::solve () computing_timer.enter_section (" Solve Stokes system"); { + pcout << " Solving Stokes system... " << std::flush; + const LinearSolvers::RightPrecond preconditioner (stokes_matrix, stokes_preconditioner_matrix, @@ -2855,10 +2857,10 @@ void BoussinesqFlowProblem::solve () stokes_solution.block(0).reinit(distributed_stokes_solution.block(0), false, true); stokes_solution.block(1).reinit(distributed_stokes_solution.block(1), false, true); - pcout << " " - << solver_control.last_step() - << " iterations for Stokes subsystem." - << " reduced res by " << solver_control.last_value()/solver_control.initial_value() + pcout << solver_control.last_step() + << " iterations." + << " Reduced residual by " + << solver_control.last_value()/solver_control.initial_value() << std::endl; } computing_timer.exit_section();