]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Improve the documentation of TriaAccessor::is_ghost(). 12521/head
authorDavid Wells <drwells@email.unc.edu>
Tue, 29 Jun 2021 14:23:23 +0000 (10:23 -0400)
committerDavid Wells <drwells@email.unc.edu>
Tue, 29 Jun 2021 14:25:58 +0000 (10:25 -0400)
The documentation isn't quite right for p::s::T. Now that we have three parallel
Triangulation classes we should be a bit more careful in describing some of
their distinctions.

include/deal.II/distributed/shared_tria.h
include/deal.II/grid/tria_accessor.h

index d967fe7661556e89748ac6424bb12b42272be7c3..9b13f8e0c977ada805616149b4da87bd08067268 100644 (file)
@@ -351,7 +351,7 @@ namespace parallel
       get_true_level_subdomain_ids_of_cells(const unsigned int level) const;
 
       /**
-       * Return allow_artificial_cells , namely true if artificial cells are
+       * Return allow_artificial_cells, namely true if artificial cells are
        * allowed.
        */
       bool
index e2a2a1dd379159128aec2b9c79a06e9ed9d099e9..d0f3eb879320558e15b37c2a11cc915c722b0455 100644 (file)
@@ -3678,14 +3678,18 @@ public:
   is_locally_owned_on_level() const;
 
   /**
-   * Return whether this cell exists in the global mesh but (i) is owned by
-   * another processor, i.e. has a subdomain_id different from the one the
-   * current processor owns and (ii) is adjacent to a cell owned by the
-   * current processor.
-   *
-   * This function only makes sense if the triangulation used is of kind
-   * parallel::distributed::Triangulation. In all other cases, the returned
-   * value is always false.
+   * Return true if:
+   * <ol>
+   * <li>This cell exists in the global mesh (i.e., it is not artificial),
+   * and</li>
+   * <li>This cell is owned by another processor (i.e., has a subdomain_id
+   * different from Triangulation::locally_owned_subdomain())</li>
+   * </ol>
+   *
+   * In all other cases the returned value is false. In particular, only
+   * parallel Triangulations (i.e., Triangulations inheriting from
+   * parallel::TriangulationBase) can have ghost cells, so for a serial
+   * Triangulation the returned value is false.
    *
    * See the
    * @ref GlossGhostCell "glossary"
@@ -3696,7 +3700,13 @@ public:
    * @post The returned value is equal to <code>!is_locally_owned() &&
    * !is_artificial()</code>.
    *
-   * @note Whether a cell is a ghost cell, artificial, or is locally owned or
+   * @note For parallel::distributed::Triangulation and
+   * parallel::fullydistributed::Triangulation, ghost cells are always adjacent
+   * to locally owned cells. For parallel::shared::Triangulation they may not
+   * be, dependent on whether or not the triangulation uses artificial cells -
+   * see parallel::shared::Triangulation::Triangulation() for more information.
+   *
+   * @note Whether a cell is a ghost cell, artificial, or is locally owned
    * is a property that only pertains to cells that are active. Consequently,
    * you can only call this function if the cell it refers to has no children.
    */

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.