From: Timo Heister Date: Fri, 4 May 2018 13:57:26 +0000 (-0400) Subject: address comments X-Git-Tag: v9.0.0-rc1~14^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6254%2Fhead;p=dealii.git address comments --- diff --git a/include/deal.II/lac/constraint_matrix.h b/include/deal.II/lac/constraint_matrix.h index 64106c4a72..6e5a3a771f 100644 --- a/include/deal.II/lac/constraint_matrix.h +++ b/include/deal.II/lac/constraint_matrix.h @@ -1218,10 +1218,10 @@ public: * in a distributed computation. * * This method checks if all processors agree on the constraints for their - * local lines as returned by get_local_lines(). This method is a collective + * local lines as given by @p locally_active_dofs. This method is a collective * operation and will return @p true only if all processors are consistent. * - * Please supply the owned DoFs per processor as return by + * Please supply the owned DoFs per processor as returned by * DoFHandler::locally_owned_dofs_per_processor() as @p locally_owned_dofs * and the result of DoFTools::extract_locally_active_dofs() as * @p locally_active_dofs. The @@ -1233,7 +1233,9 @@ public: * * @note This method exchanges all constraint information of locally active * lines and is as such slow for large computations and should probably - * only be used in debug mode. + * only be used in debug mode. We do not check all lines returned by + * get_local_lines() but only the locally active ones, as we allow processors + * to not know about some locally relevant rows. * * @return Whether all ConstraintMatrix objects are consistent. Returns the * same value on all processors.