From 5f5a2d03135813169b36129f4a96e0f02cdbb50c Mon Sep 17 00:00:00 2001 From: kronbichler Date: Wed, 22 May 2013 06:27:29 +0000 Subject: [PATCH] Improve documentation. git-svn-id: https://svn.dealii.org/trunk@29548 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/parallel_vector.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/deal.II/include/deal.II/lac/parallel_vector.h b/deal.II/include/deal.II/lac/parallel_vector.h index 7154c94b24..896f9f3bd9 100644 --- a/deal.II/include/deal.II/lac/parallel_vector.h +++ b/deal.II/include/deal.II/lac/parallel_vector.h @@ -62,20 +62,20 @@ namespace parallel * access vector entries in the local index space with the function @p * local_element(). Locally owned indices are placed first, [0, * local_size()), and then all ghost indices follow after them - * contiguously, [local_size(), local_size()+n_ghost_indices()). + * contiguously, [local_size(), local_size()+n_ghost_entries()). * * Functions related to parallel functionality: * - The function compress() goes through the data associated * with ghost indices and communicates it to the owner process, which can * then add/set it to the correct position. This can be used e.g. after * having run an assembly routine involving ghosts that fill this vector. - * - The update_ghost_values() function imports the data from the owning - * processor to the ghost indices in order to provide read access to the - * data associated with ghosts. - * - It is possible to split the above functions into two phases, where the first - * initiates the communication and the second one finishes it. These - * functions can be used to overlap communication with computations in - * other parts of the code. + * - The update_ghost_values() function imports the data from + * the owning processor to the ghost indices in order to provide read + * access to the data associated with ghosts. + * - It is possible to split the above functions into two phases, where + * the first initiates the communication and the second one finishes + * it. These functions can be used to overlap communication with + * computations in other parts of the code. * - Of course, reduction operations (like norms) make use of collective * all-to-all MPI communications. * -- 2.39.5