From be5696190bda15ad045f614de79a787fdf627768 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 15 Feb 2011 19:29:50 +0000 Subject: [PATCH] Beautify output. git-svn-id: https://svn.dealii.org/trunk@23372 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-32/step-32.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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(); -- 2.39.5