From: Wolfgang Bangerth Date: Mon, 10 Aug 2015 20:13:47 +0000 (-0500) Subject: Update documentation of CellAccessor::active_cell_index(). X-Git-Tag: v8.4.0-rc2~636^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1320%2Fhead;p=dealii.git Update documentation of CellAccessor::active_cell_index(). --- diff --git a/include/deal.II/grid/tria_accessor.h b/include/deal.II/grid/tria_accessor.h index a3da804d1c..fcc3f7a2b0 100644 --- a/include/deal.II/grid/tria_accessor.h +++ b/include/deal.II/grid/tria_accessor.h @@ -2467,7 +2467,12 @@ public: * and * @ref GlossArtificialCell). * This function counts over all of them, including ghost and artificial - * active cells. + * active cells. This implies that the index returned by this function + * uniquely identifies a cell within the triangulation on a single processor, + * but does not uniquely identify the cell among the (parts of the) + * triangulation that is shared among processors. If you would like to identify + * active cells across processors, you need to consider the CellId of a cell + * returned by CellAccessor::id(). */ unsigned int active_cell_index () const;