Skip to content
Snippets Groups Projects
Commit 6805fc0c authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Fixed doxygen errors.

[[Imported from SVN: r6678]]
parent 7cff40d8
No related branches found
No related tags found
No related merge requests found
......@@ -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
{
......
......@@ -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);
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment