From: Wolfgang Bangerth Date: Sun, 10 Apr 2005 18:19:36 +0000 (+0000) Subject: Better output. X-Git-Tag: v8.0.0~14078 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca025920fc12dba3284108f5ff52d2d1eafa45be;p=dealii.git Better output. git-svn-id: https://svn.dealii.org/trunk@10469 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-18/step-18.cc b/deal.II/examples/step-18/step-18.cc index 01d150b757..e3c723fae1 100644 --- a/deal.II/examples/step-18/step-18.cc +++ b/deal.II/examples/step-18/step-18.cc @@ -1490,17 +1490,17 @@ namespace QuasiStaticElasticity template void TopLevel::solve_timestep () { - pcout << " Assembling system..." << std::flush; + pcout << " Assembling system..." << std::flush; assemble_system (); pcout << " norm of rhs is " << system_rhs.l2_norm() << std::endl; const unsigned int n_iterations = solve_linear_problem (); - pcout << " Solver converged in " << n_iterations + pcout << " Solver converged in " << n_iterations << " iterations." << std::endl; - pcout << " Updating quadrature point data..." << std::flush; + pcout << " Updating quadrature point data..." << std::flush; update_quadrature_point_history (); pcout << std::endl; }