From: Wolfgang Bangerth Date: Thu, 22 Sep 2011 23:56:46 +0000 (+0000) Subject: Say something more. X-Git-Tag: v8.0.0~3429 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51c0586c96e0122c7804d0f14a8d7e32291eafc7;p=dealii.git Say something more. git-svn-id: https://svn.dealii.org/trunk@24377 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index f1087f528a..f828f92d34 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -1876,7 +1876,16 @@ void BoussinesqFlowProblem::project_temperature_field () // temperature_solution // and // old_old_temperature_solution - // as well: + // as well. The second and third + // argument to the reinit function + // indicates that the elements of + // the first argument shall be + // copied and that while the + // solution vector is + // strictly distributed, the + // vectors here initialized can + // (and indeed do) have ghost + // elements: temperature_solution.reinit(solution, false, true); old_temperature_solution.reinit(solution, false, true); old_old_temperature_solution.reinit(solution, false, true);