From 51c0586c96e0122c7804d0f14a8d7e32291eafc7 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 22 Sep 2011 23:56:46 +0000 Subject: [PATCH] Say something more. git-svn-id: https://svn.dealii.org/trunk@24377 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-32/step-32.cc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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); -- 2.39.5