From 665e34c91087eb7a21f8f6ea1140d693a3afd3eb Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 3 May 2000 16:24:42 +0000 Subject: [PATCH] Very minor reformatting. git-svn-id: https://svn.dealii.org/trunk@2790 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/solver_cg.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/deal.II/lac/include/lac/solver_cg.h b/deal.II/lac/include/lac/solver_cg.h index 81c49d474b..0e79f6cacb 100644 --- a/deal.II/lac/include/lac/solver_cg.h +++ b/deal.II/lac/include/lac/solver_cg.h @@ -231,7 +231,8 @@ SolverCG::solve (const MATRIX &A, print_vectors(it, x, g, d); conv = control().check(it,res); - if (conv) break; + if (conv) + break; precondition(h,g); @@ -243,15 +244,13 @@ SolverCG::solve (const MATRIX &A, }; -// Deallocate Memory - + // Deallocate Memory memory.free(Vr); memory.free(Vp); memory.free(Vz); memory.free(VAp); - // Output - + // Output deallog.pop(); if (conv == SolverControl::failure) -- 2.39.5