/**
* Temporary storage that holds the data that is sent to this processor
- * in @p compress() or sent from this processor in
- * @p update_ghost_values.
+ * in compress() or sent from this processor in update_ghost_values().
*/
mutable ::dealii::MemorySpace::MemorySpaceData<Number, MemorySpace>
import_data;
#ifdef DEAL_II_WITH_MPI
/**
- * A vector that collects all requests from @p compress() operations.
+ * A vector that collects all requests from compress() operations.
* This class uses persistent MPI communicators, i.e., the communication
* channels are stored during successive calls to a given function. This
* reduces the overhead involved with setting up the MPI machinery, but
std::vector<MPI_Request> compress_requests;
/**
- * A vector that collects all requests from @p update_ghost_values()
+ * A vector that collects all requests from update_ghost_values()
* operations. This class uses persistent MPI communicators.
*/
mutable std::vector<MPI_Request> update_ghost_values_requests;
#endif
/**
- * A lock that makes sure that the @p compress and @p
- * update_ghost_values functions give reasonable results also when used
+ * A lock that makes sure that the compress() and update_ghost_values()
+ * functions give reasonable results also when used
* with several threads.
*/
mutable std::mutex mutex;
/**
* A helper function that clears the compress_requests and
- * update_ghost_values_requests field. Used in reinit functions.
+ * update_ghost_values_requests field. Used in reinit() functions.
*/
void
clear_mpi_requests();