Skip to content

Commit

Permalink
Merge branch 'main' into replace-pragma-once-by-include-guard
Browse files Browse the repository at this point in the history
  • Loading branch information
sandro-elsweijer authored Feb 17, 2025
2 parents c084b71 + 7b801cc commit 954fa77
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/t8_forest/t8_forest_general.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ T8_EXTERN_C_BEGIN ();
* of the new forest that are either refined, coarsened or the same as elements in the old forest.
*
* \param [in] forest_old The forest that is adapted
* \param [in] forest_new The forest that is newly constructed from \a forest_old
* \param [in, out] forest_new The forest that is newly constructed from \a forest_old
* \param [in] which_tree The local tree containing \a first_outgoing and \a first_incoming
* \param [in] tree_class The eclass of the local tree containing \a first_outgoing and \a first_incoming
* \param [in] scheme The scheme of the forest
* \param [in] scheme The scheme of the forest
* \param [in] refine -1 if family in \a forest_old got coarsened, 0 if element
* has not been touched, 1 if element got refined and -2 if
* element got removed. See return of t8_forest_adapt_t.
Expand Down Expand Up @@ -101,7 +101,7 @@ typedef void (*t8_forest_replace_t) (t8_forest_t forest_old, t8_forest_t forest_
* \param [in] which_tree The local tree containing \a elements.
* \param [in] tree_class The eclass of \a which_tree.
* \param [in] lelement_id The local element id in \a forest_old in the tree of the current element.
* \param [in] scheme The scheme of the forest.
* \param [in] scheme The scheme of the forest.
* \param [in] is_family If 1, the first \a num_elements entries in \a elements form a family. If 0, they do not.
* \param [in] num_elements The number of entries in \a elements that are defined
* \param [in] elements Pointers to a family or, if \a is_family is zero,
Expand All @@ -119,7 +119,7 @@ typedef int (*t8_forest_adapt_t) (t8_forest_t forest, t8_forest_t forest_from, t

/** Create a new forest with reference count one.
* This forest needs to be specialized with the t8_forest_set_* calls.
* Currently it is manatory to either call the functions \ref
* Currently it is mandatory to either call the functions \ref
* t8_forest_set_mpicomm, \ref t8_forest_set_cmesh, and \ref t8_forest_set_scheme,
* or to call one of \ref t8_forest_set_copy, \ref t8_forest_set_adapt, or
* \ref t8_forest_set_partition. It is illegal to mix these calls, or to
Expand Down Expand Up @@ -615,8 +615,8 @@ t8_forest_leaf_face_neighbors_ext (t8_forest_t forest, t8_locidx_t ltreeid, cons
t8_gloidx_t *gneigh_tree, int *orientation);

/** Exchange ghost information of user defined element data.
* \param[in] forest The forest. Must be committed.
* \param[in] element_data An array of length num_local_elements + num_ghosts
* \param [in] forest The forest. Must be committed.
* \param [in] element_data An array of length num_local_elements + num_ghosts
* storing one value for each local element and ghost in \a forest.
* After calling this function the entries for the ghost elements
* are update with the entries in the \a element_data array of
Expand Down

0 comments on commit 954fa77

Please sign in to comment.