From 109307c1c88446dc922dcdbcb91e5094f76584ec Mon Sep 17 00:00:00 2001 From: heister Date: Wed, 4 Sep 2013 22:12:52 +0000 Subject: [PATCH] simplify test (do not need update_ghost_values() anymore) git-svn-id: https://svn.dealii.org/trunk@30604 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/gla/extract_subvector_to_parallel.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/gla/extract_subvector_to_parallel.cc b/tests/gla/extract_subvector_to_parallel.cc index 2ee0ce54d8..80b5569363 100644 --- a/tests/gla/extract_subvector_to_parallel.cc +++ b/tests/gla/extract_subvector_to_parallel.cc @@ -92,7 +92,6 @@ int main (int argc, char **argv) set (w); parallel::distributed::Vector v(local, dense_local, MPI_COMM_WORLD); v = w; // get copy of vector including ghost elements - v.update_ghost_values(); // this is necessary for this kind of vector test (v); deallog.pop(); } @@ -155,7 +154,6 @@ int main (int argc, char **argv) set (w); parallel::distributed::BlockVector v(partitioning, dense_partitioning, MPI_COMM_WORLD); v = w; // get copy of vector including ghost elements - v.update_ghost_values(); // this is necessary for this kind of vector test (v); deallog.pop(); } -- 2.39.5