From: Wolfgang Bangerth Date: Mon, 4 Jan 2010 13:23:33 +0000 (+0000) Subject: Let inner preconditioner say that it is the inner preconditioner. X-Git-Tag: v8.0.0~6711 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc93e30dde394bae5c2057ca962c5fc2ca735d1a;p=dealii.git Let inner preconditioner say that it is the inner preconditioner. git-svn-id: https://svn.dealii.org/trunk@20278 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-42/step-42.cc b/deal.II/examples/step-42/step-42.cc index 5eeadb54ca..a7feadc094 100644 --- a/deal.II/examples/step-42/step-42.cc +++ b/deal.II/examples/step-42/step-42.cc @@ -3,7 +3,7 @@ /* $Id$ */ /* */ -/* Copyright (C) 2008, 2009 by the deal.II authors */ +/* Copyright (C) 2008, 2009, 2010 by the deal.II authors */ /* */ /* This file is subject to QPL and may not be distributed */ /* without copyright and license information. Please refer */ @@ -229,7 +229,7 @@ void InverseMatrix::vmult (Vector &dst, cg.solve (*matrix, dst, src, *preconditioner); - std::cout << "CG steps: " << solver_control.last_step() << std::endl; + std::cout << " Preconditioner CG steps: " << solver_control.last_step() << std::endl; } template @@ -555,10 +555,6 @@ void StokesProblem::solve_block () std::cout << " " << solver_control.last_step() << " block GMRES iterations"; - - - - } template