From: Wolfgang Bangerth Date: Wed, 5 Mar 2014 00:31:34 +0000 (+0000) Subject: Add to documentation. X-Git-Tag: v8.2.0-rc1~721 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13c182bce24141dbcc62188585dca07d68dc81d9;p=dealii.git Add to documentation. git-svn-id: https://svn.dealii.org/trunk@32610 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/trilinos_vector_base.h b/deal.II/include/deal.II/lac/trilinos_vector_base.h index 2a93319527..dfb77a229e 100644 --- a/deal.II/include/deal.II/lac/trilinos_vector_base.h +++ b/deal.II/include/deal.II/lac/trilinos_vector_base.h @@ -674,7 +674,12 @@ namespace TrilinosWrappers * Simple vector addition, equal to the operator +=. * * Though, if the second argument allow_different_maps is set, - * then it is possible to add data from a different map. + * then it is possible to add data from a vector that uses a different + * map, i.e., a vector whose elements are split across processors + * differently. This may include vectors with ghost elements, for example. + * In general, however, adding vectors with a different element-to-processor + * map requires communicating data among processors and, consequently, + * is a slower operation than when using vectors using the same map. */ void add (const VectorBase &V, const bool allow_different_maps = false);