From ba27b3a97b172498d5ab022de137957ff34745a1 Mon Sep 17 00:00:00 2001 From: wolf Date: Sun, 10 Apr 2005 18:19:36 +0000 Subject: [PATCH] Better output. git-svn-id: https://svn.dealii.org/trunk@10469 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-18/step-18.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.39.5