Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/t8_cmesh/t8_cmesh_examples.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ t8_cmesh_new_empty (sc_MPI_Comm comm, const int do_partition, const int dimensio
t8_cmesh_t
t8_cmesh_new_from_class (t8_eclass_t eclass, sc_MPI_Comm comm);

/** Construct a hypercube forest from one primitive tree class.
/** Construct a hypercube cmesh from one primitive tree class.
* \param [in] eclass This element class determines the dimension and
* the number of trees needed to construct a cube.
* \param [in] comm The mpi communicator to be used.
Expand All @@ -92,7 +92,7 @@ t8_cmesh_new_from_class (t8_eclass_t eclass, sc_MPI_Comm comm);
t8_cmesh_t
t8_cmesh_new_hypercube (t8_eclass_t eclass, sc_MPI_Comm comm, int do_bcast, int do_partition, int periodic);

/** Construct a hypercube forest from one primitive tree class.
/** Construct a hypercube cmesh from one primitive tree class.
* \param [in] eclass This element class determines the dimension of the cube.
* \param [in] comm The mpi communicator to be used.
* \param [in] boundary The vertices, that define the hypercube boundary.
Expand Down Expand Up @@ -131,7 +131,7 @@ t8_cmesh_t
t8_cmesh_new_hypercube_pad (const t8_eclass_t eclass, sc_MPI_Comm comm, const double *boundary, t8_locidx_t polygons_x,
t8_locidx_t polygons_y, t8_locidx_t polygons_z, const int use_axis_aligned);

/** Construct a hypercube forest from one primitive tree class.
/** Construct a hypercube cmesh from one primitive tree class.
* \param [in] eclass This element class determines the dimension of the cube.
* \param [in] comm The mpi communicator to be used.
* \param [in] boundary The vertices, that define the hypercube boundary.
Expand Down Expand Up @@ -190,7 +190,7 @@ t8_cmesh_new_hypercube_hybrid (sc_MPI_Comm comm, int do_partition, int periodic)
* Hypercube?
* TODO: redundant, remove.
* \param [in] comm The mpi communicator to use.
* \param [in] dim The dimension of the forest, 1, 2 or 3.
* \param [in] dim The dimension of the cmesh, 1, 2 or 3.
* \return A valid cmesh, as if _init and _commit had been called.
*/
t8_cmesh_t
Expand Down Expand Up @@ -228,14 +228,14 @@ t8_cmesh_new_periodic_line_more_trees (sc_MPI_Comm comm);
t8_cmesh_t
t8_cmesh_new_bigmesh (t8_eclass_t eclass, int num_trees, sc_MPI_Comm comm);

/** Construct a forest of three connected askew lines
/** Construct a cmesh of three connected askew lines
* \param [in] comm The mpi communicator to use.
* \return A valid cmesh, as if _init and _commit had been called.
*/
t8_cmesh_t
t8_cmesh_new_line_zigzag (sc_MPI_Comm comm);

/** Construct a forest of num_of_prisms connected prism, all with one edge in 0,
/** Construct a cmesh of num_of_prisms connected prism, all with one edge in 0,
* except for num_of_prisms = 2, then the return is the hypercube mesh
* \param [in] comm The mpi communicator to use.
* \param [in] num_of_prisms The number of prisms to be used.
Expand All @@ -256,14 +256,14 @@ t8_cmesh_new_prism_deformed (sc_MPI_Comm comm);
t8_cmesh_t
t8_cmesh_new_pyramid_deformed (sc_MPI_Comm comm);

/** Construct a forest of six connected noncannoical oriented prisms
/** Construct a cmesh of six connected noncannoical oriented prisms
* \param [in] comm The mpi communicator to use.
* \return A valid cmesh, as if _init and _commit had been called.
*/
t8_cmesh_t
t8_cmesh_new_prism_cake_funny_oriented (sc_MPI_Comm comm);

/** Construct a forest of six connected noncannoical oriented prisms
/** Construct a cmesh of six connected noncannoical oriented prisms
* \param [in] comm The mpi communicator to use.
* \return A valid cmesh, as if _init and _commit had been called.
*/
Expand Down
1 change: 0 additions & 1 deletion src/t8_cmesh/t8_cmesh_geometry.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

/** \file t8_cmesh_geometry.hxx
* Internal functions that we need for the cmesh geometry.
* TODO: document this file
*/

#ifndef T8_CMESH_GEOMETRY_H
Expand Down
3 changes: 1 addition & 2 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_commit.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
*/

/** \file t8_cmesh_commit.cxx
*
* TODO: document this file
* Functionality to commit a cmesh.
*/

#include <t8_data/t8_shmem.h>
Expand Down
3 changes: 1 addition & 2 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_copy.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
*/

/** \file t8_cmesh_copy.c
*
* TODO: document this file
* Functionality to copy a cmesh.
*/

#include <t8_data/t8_shmem.h>
Expand Down
3 changes: 1 addition & 2 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_copy.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
*/

/** \file t8_cmesh_copy.h
*
* TODO: document this file
* Function to copy a cmesh.
*/

#ifndef T8_CMESH_COPY_H
Expand Down
4 changes: 2 additions & 2 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_offset.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
*/

/** \file t8_cmesh_offset.c
*
* TODO: document this file
* Implementation of functions that deal with
* the cmesh partition offset.
*/

#include "t8_cmesh_offset.h"
Expand Down
5 changes: 1 addition & 4 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_offset.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,8 @@
*/

/** \file t8_cmesh_offset.h
*
* In this file we collect function that deal with
* In this file we collect functions that deal with
* the cmesh partition offset.
*
* TODO: document this file
*/

#ifndef T8_CMESH_OFFSET_H
Expand Down
3 changes: 1 addition & 2 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_partition.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
*/

/** \file t8_cmesh_partition.cxx
*
* TODO: document this file
* Implementation of functionality related to the partitioning of a cmesh.
*/

#include <cstring>
Expand Down
3 changes: 1 addition & 2 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_partition.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
*/

/** \file t8_cmesh_partition.h
*
* TODO: document this file
* Functionality related to the partitioning of a cmesh.
*/

#ifndef T8_CMESH_PARTITION_H
Expand Down
3 changes: 1 addition & 2 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_trees.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
*/

/** \file t8_cmesh_trees.cxx
*
* TODO: document this file
* Interface for the data layout of the coarse trees.
*/

#include <vector>
Expand Down
3 changes: 1 addition & 2 deletions src/t8_cmesh/t8_cmesh_internal/t8_cmesh_trees.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
*/

/** \file t8_cmesh_trees.h
*
* TODO: document this file
* Interface for the data layout of the coarse trees.
*/

#ifndef T8_CMESH_PART_TREE_H
Expand Down
3 changes: 0 additions & 3 deletions src/t8_cmesh/t8_cmesh_io/t8_cmesh_save.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@
*/

/** \file t8_cmesh_save.cxx
*
* We define routines to save and load a cmesh to/from the file system.
*
* TODO: document this file
*/

#include <t8_version.h>
Expand Down
3 changes: 0 additions & 3 deletions src/t8_cmesh/t8_cmesh_io/t8_cmesh_save.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@
*/

/** \file t8_cmesh_save.h
*
* We define routines to save and load a cmesh to/from the file system.
*
* TODO: document this file
*/

#ifndef T8_CMESH_SAVE_H
Expand Down
2 changes: 0 additions & 2 deletions src/t8_forest/t8_forest_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@

T8_EXTERN_C_BEGIN ();

/* TODO: document */

/** Check whether or not \a elements contains a (in)complete family and
* return the size of it or zero if no family is considered.
* \param [in] forest The forest.
Expand Down