From ee9bf315c299c6655838934b5cbe2c25df7d92a6 Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 7 Aug 2012 14:16:36 +0000 Subject: [PATCH] Augment documentation. git-svn-id: https://svn.dealii.org/trunk@25757 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/trilinos_vector.h | 35 ++++++++++--------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/deal.II/include/deal.II/lac/trilinos_vector.h b/deal.II/include/deal.II/lac/trilinos_vector.h index ac6cb5582b..f70303b23b 100644 --- a/deal.II/include/deal.II/lac/trilinos_vector.h +++ b/deal.II/include/deal.II/lac/trilinos_vector.h @@ -443,10 +443,13 @@ namespace TrilinosWrappers const MPI_Comm &communicator = MPI_COMM_WORLD); /** - * Reinit functionality. This - * function destroys the old vector - * content and generates a new one - * based on the input partitioning. + * Reinit functionality. This function + * destroys the old vector content and + * generates a new one based on the + * input partitioning. The flag + * fast determines whether the + * vector should be filled with zero + * (false) or left untouched (true). */ void reinit (const IndexSet ¶llel_partitioning, const MPI_Comm &communicator = MPI_COMM_WORLD, @@ -658,19 +661,19 @@ namespace TrilinosWrappers /** * Initialization with an - * IndexSet. Similar to the call in - * the other class MPI::Vector, with - * the difference that now a copy on - * all processes is generated. This + * IndexSet. Similar to the call in the + * other class MPI::Vector, with the + * difference that now a copy on all + * processes is generated. This * initialization function is - * appropriate in case the data in - * the localized vector should be - * imported from a distributed vector - * that has been initialized with the - * same communicator. The variable - * fast determines whether - * the vector should be filled with - * zero or left untouched. + * appropriate in case the data in the + * localized vector should be imported + * from a distributed vector that has + * been initialized with the same + * communicator. The variable + * fast determines whether the + * vector should be filled with zero + * (false) or left untouched (true). */ void reinit (const IndexSet &input_map, const MPI_Comm &communicator = MPI_COMM_WORLD, -- 2.39.5