diff --git a/dune/common/parallel/collectivecommunication.hh b/dune/common/parallel/collectivecommunication.hh index 9d87cef858a2acd724fd208f1e1f7a57f77697ac..c15280a4b4d433753bf0af5d8997565629413f43 100644 --- a/dune/common/parallel/collectivecommunication.hh +++ b/dune/common/parallel/collectivecommunication.hh @@ -189,7 +189,7 @@ namespace Dune * @param[out] out The buffer to store the received data in. Might have length zero on non-root * tasks. * @param[in] len The number of elements to send on each task. - * @param[out] root The root task that gathers the data. + * @param[in] root The root task that gathers the data. */ template<typename T> int gather (T* in, T* out, int len, int root) const // note out must have same size as in @@ -212,10 +212,10 @@ namespace Dune * of elements to receive from process i at position i, i.e. the number that * is passed as sendlen argument to this function in process i. * May have length zero on non-root tasks. - * @param[in] displ An array with size equal to the number of processes. Data received from + * @param[out] displ An array with size equal to the number of processes. Data received from * process i will be written starting at out+displ[i] on the root process. * May have length zero on non-root tasks. - * @param[out] root The root task that gathers the data. + * @param[in] root The root task that gathers the data. */ template<typename T> int gatherv (T* in, int sendlen, T* out, int* recvlen, int* displ, int root) const @@ -235,7 +235,7 @@ namespace Dune * method each task will have same data stored there as the one in * send buffer of the root task before. * @param[in] len The number of elements in the recv buffer. - * @param[out] root The root task that gathers the data. + * @param[in] root The root task that gathers the data. */ template<typename T> int scatter (T* send, T* recv, int len, int root) const // note out must have same size as in @@ -260,7 +260,7 @@ namespace Dune * method each task will have the same data stored there as the one in * send buffer of the root task before. * @param[in] recvlen The number of elements in the recv buffer. - * @param[out] root The root task that gathers the data. + * @param[in] root The root task that gathers the data. */ template<typename T> int scatterv (T* send, int* sendlen, int* displ, T* recv, int recvlen, int root) const