3333#include <t8_element.h>
3434#include <t8_schemes/t8_scheme.h>
3535
36- /* Forward pointer reference to hidden cmesh implementation.
36+ /** Forward pointer reference to hidden cmesh implementation.
3737 * This reference needs to be known by t8_geometry, hence we
3838 * put it before the include. */
3939typedef struct t8_cmesh * t8_cmesh_t ;
@@ -54,9 +54,11 @@ typedef struct t8_cmesh *t8_cmesh_t;
5454 * edit: This should be achieved now.
5555 */
5656
57- /* Forward pointer references to hidden implementations of
58- * tree and ghost tree . */
57+ /** Forward pointer references to hidden implementations of
58+ * tree. */
5959typedef struct t8_ctree * t8_ctree_t ;
60+ /** Forward pointer references to hidden implementations of
61+ * ghost tree. */
6062typedef struct t8_cghost * t8_cghost_t ;
6163
6264T8_EXTERN_C_BEGIN ();
@@ -146,7 +148,7 @@ t8_cmesh_set_derive (t8_cmesh_t cmesh, t8_cmesh_t set_from);
146148 * \param [in] mpisize The number of processes.
147149 * \param [in] comm The MPI communicator to use. Its mpisize must match \a mpisize.
148150 * The shared memory type must have been set. Best practice would be
149- * calling \ref sc_shmem_set_type (comm, T8_SHMEM_BEST_TYPE).
151+ * calling sc_shmem_set_type (comm, T8_SHMEM_BEST_TYPE).
150152 * \return A t8_shmem_array struct that stores \a mpisize + 1 t8_gloidx_t entries.
151153 * \see t8_shmem.h
152154 */
@@ -751,7 +753,7 @@ t8_cmesh_get_partition_table (t8_cmesh_t cmesh);
751753/** Calculate the section of a uniform forest for the current rank.
752754 * \param [in] cmesh The cmesh to be considered.
753755 * \param [in] level The uniform refinement level to be created.
754- * \param [in] scheme The element scheme for which to compute the bounds.
756+ * \param [in] tree_scheme The element scheme for which to compute the bounds.
755757 * \param [out] first_local_tree The first tree that contains elements belonging to the calling processor.
756758 * \param [out] child_in_tree_begin The tree-local index of the first element belonging to the calling processor. Not computed if NULL.
757759 * \param [out] last_local_tree The last tree that contains elements belonging to the calling processor.
@@ -770,7 +772,7 @@ t8_cmesh_uniform_bounds_equal_element_count (t8_cmesh_t cmesh, const int level,
770772/**
771773 * Calculate the section of a uniform hybrid forest for the current rank. Needed for hybrid meshes, especially
772774 * meshes where not all elements refine into 1:2^dim manner. The section is calculated without assuming such refinement
773- * and each process computes its number of elements on the given \var level, communicates the number to other processes,
775+ * and each process computes its number of elements on the given \a level, communicates the number to other processes,
774776 * and the correct section is computed based on this information.
775777 *
776778 * \param [in] cmesh The cmesh to be considered.
@@ -819,7 +821,6 @@ t8_cmesh_unref (t8_cmesh_t *pcmesh);
819821 * \param [in,out] pcmesh This cmesh must have a reference count of one.
820822 * It can be in any state (committed or not).
821823 * Then it effectively calls \ref t8_cmesh_unref.
822- * \param [in] comm A mpi communicator that is valid with \a cmesh.
823824 */
824825void
825826t8_cmesh_destroy (t8_cmesh_t * pcmesh );
0 commit comments