From: bangerth Date: Mon, 2 Sep 2013 22:09:21 +0000 (+0000) Subject: Add a couple of comments. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccd5ef34ccf8132ef74cfd01238fd96fce679c91;p=dealii-svn.git Add a couple of comments. git-svn-id: https://svn.dealii.org/trunk@30557 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/gla/extract_subvector_to_parallel.cc b/tests/gla/extract_subvector_to_parallel.cc index c859a1a9b0..cb19f80e0c 100644 --- a/tests/gla/extract_subvector_to_parallel.cc +++ b/tests/gla/extract_subvector_to_parallel.cc @@ -86,9 +86,10 @@ int main (int argc, char **argv) IndexSet dense_local (10); dense_local.add_range(0,10); +//TODO: yields an error because we apparently forget to import ghost elements // { // deallog.push("deal.II"); - // parallel::distributed::Vector w(local, dense_local, MPI_COMM_WORLD); + // parallel::distributed::Vector w(local, MPI_COMM_WORLD); // set (w); // parallel::distributed::Vector v(local, dense_local, MPI_COMM_WORLD); // v = w; // get copy of vector including ghost elements @@ -148,6 +149,7 @@ int main (int argc, char **argv) } +//TODO: does not currently compile // { // deallog.push("deal.II"); // parallel::distributed::BlockVector w(partitioning, MPI_COMM_WORLD);