From 9aec22e7687f26a11d6ce723c8f2b57a96706cdf Mon Sep 17 00:00:00 2001 From: Katharina Kormann Date: Sun, 15 Jul 2012 12:04:43 +0000 Subject: [PATCH] Correct initialization of partitioner (bug pointed out by Martin Steigemann). git-svn-id: https://svn.dealii.org/trunk@25702 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/base/partitioner.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deal.II/source/base/partitioner.cc b/deal.II/source/base/partitioner.cc index ebeaa14876..e3f09c43e0 100644 --- a/deal.II/source/base/partitioner.cc +++ b/deal.II/source/base/partitioner.cc @@ -42,7 +42,9 @@ namespace Utilities my_pid (0), n_procs (1), communicator (MPI_COMM_SELF) - {} + { + ghost_indices_data.set_size (size); + } -- 2.39.5