diff --git a/dune/common/mpicollectivecommunication.hh b/dune/common/mpicollectivecommunication.hh index a588ebdccda08ff7be5a9283872ec1674fb7443c..cef91389eac80670c2321e0033bd85d4fefd275f 100644 --- a/dune/common/mpicollectivecommunication.hh +++ b/dune/common/mpicollectivecommunication.hh @@ -253,7 +253,7 @@ namespace Dune root,communicator); } - //! @copydoc CollectiveCommunication::gather() + //! @copydoc CollectiveCommunication::scatter() template<typename T> int scatter (T* send, T* recv, int len, int root) const // note out must have space for P*len elements { @@ -276,6 +276,7 @@ namespace Dune communicator); } + //! @copydoc CollectiveCommunication::allreduce(Type* inout,int len) const template<typename BinaryFunction, typename Type> int allreduce(Type* inout, int len) const { @@ -286,7 +287,7 @@ namespace Dune return ret; } - //! @copydoc CollectiveCommunication::allreduce() + //! @copydoc CollectiveCommunication::allreduce(Type* in,Type* out,int len) const template<typename BinaryFunction, typename Type> int allreduce(Type* in, Type* out, int len) const { diff --git a/dune/common/parametertreeparser.hh b/dune/common/parametertreeparser.hh index 9fb67f4b90c59c6f26a95da557348b87a04250aa..50c183e928c19f5d7f2aa8a0ec1a4fa545f3cf7e 100644 --- a/dune/common/parametertreeparser.hh +++ b/dune/common/parametertreeparser.hh @@ -72,6 +72,7 @@ namespace Dune { * Parses C++ stream and build hierarchical config structure. * * \param in The stream to parse + * \param pt The parameter tree to store the config structure. * \param overwrite Whether to overwrite already existing values. * If false, values in the stream will be ignored * if the key is already present. @@ -89,6 +90,7 @@ namespace Dune { * Parses C++ stream and build hierarchical config structure. * * \param in The stream to parse + * \param pt The parameter tree to store the config structure. * \param srcname Name of the configuration source for error * messages, "stdin" or a filename. * \param overwrite Whether to overwrite already existing values. @@ -105,6 +107,7 @@ namespace Dune { * Parses file with given name and build hierarchical config structure. * * \param file filename + * \param pt The parameter tree to store the config structure. * \param overwrite Whether to overwrite already existing values. * If false, values in the stream will be ignored * if the key is already present. @@ -122,6 +125,7 @@ namespace Dune { * * \param argc arg count * \param argv arg values + * \param pt The parameter tree to store the config structure. */ static void readOptions(int argc, char* argv [], ParameterTree& pt); diff --git a/dune/common/tupleutility.hh b/dune/common/tupleutility.hh index cba8eb9fcf3b3091520d5b463b454905666873c8..5c5aa9ac2f1efde1109e1cb35832e66976378d38 100644 --- a/dune/common/tupleutility.hh +++ b/dune/common/tupleutility.hh @@ -1766,9 +1766,9 @@ namespace Dune { /** * \brief Apply reduce with meta binary function to template * - * For a tuple<T0,T1,...,TN-1,TN,...> the exported result is + * For a tuple\<T0,T1,...,TN-1,TN,...\> the exported result is * - * F< ... F< F< F<Seed,T0>::type, T1>::type, T2>::type, ... TN-1>::type + * F\< ... F\< F\< F\<Seed,T0\>\::type, T1\>\::type, T2\>\::type, ... TN-1\>\::type * * \tparam F Binary meta function * \tparam Tuple Apply reduce operation to this tuple