From 83ad4237ea972a840c1838449f0552971ba20051 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 21 Nov 2012 23:50:16 +0000 Subject: [PATCH] Avoid debug output to the console. git-svn-id: https://svn.dealii.org/trunk@27668 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/lac/petsc_solver.cc | 9 --------- 1 file changed, 9 deletions(-) diff --git a/deal.II/source/lac/petsc_solver.cc b/deal.II/source/lac/petsc_solver.cc index 60a7ecc4e4..cdd889e836 100644 --- a/deal.II/source/lac/petsc_solver.cc +++ b/deal.II/source/lac/petsc_solver.cc @@ -805,8 +805,6 @@ namespace PETScWrappers solver_control.last_value()); else { - PetscPrintf(PETSC_COMM_WORLD, "Success. MUMPS has solved.\n"); - /** * obtain convergence * information. obtain @@ -817,13 +815,6 @@ namespace PETScWrappers AssertThrow (ierr == 0, ExcPETScError(ierr)); ierr = KSPGetResidualNorm (solver_data->ksp, &rnorm); AssertThrow (ierr == 0, ExcPETScError(ierr)); - - /** - * print the convergence - * information - */ - PetscPrintf(PETSC_COMM_WORLD, "Norm of residual is %G in %D iteration(s)\n", - rnorm, its); } #else // PETSC_HAVE_MUMPS -- 2.39.5