From: Peter Munch Date: Sun, 10 Nov 2019 18:42:51 +0000 (+0100) Subject: Add missing doxygen comment in ConsensusAlgorithm X-Git-Tag: v9.2.0-rc1~889^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a19a1bcc85806e27256498f5d532a6d984f88f5d;p=dealii.git Add missing doxygen comment in ConsensusAlgorithm --- diff --git a/include/deal.II/base/mpi.h b/include/deal.II/base/mpi.h index fc03961682..535f60a07e 100644 --- a/include/deal.II/base/mpi.h +++ b/include/deal.II/base/mpi.h @@ -1068,6 +1068,9 @@ namespace Utilities */ virtual ~ConsensusAlgorithm() = default; + /** + * Run consensus algorithm. + */ virtual void run() = 0; @@ -1133,7 +1136,7 @@ namespace Utilities virtual ~ConsensusAlgorithm_NBX() = default; /** - * Run consensus algorithm. + * @copydoc ConsensusAlgorithm::run() */ virtual void run() override; @@ -1275,7 +1278,7 @@ namespace Utilities virtual ~ConsensusAlgorithm_PEX() = default; /** - * Run consensus algorithm. + * @copydoc ConsensusAlgorithm::run() */ virtual void run() override; @@ -1374,8 +1377,9 @@ namespace Utilities virtual ~ConsensusAlgorithmSelector() = default; /** - * Run consensus algorithm. The function call is delegated to another - * ConsensusAlgorithm implementation. + * @copydoc ConsensusAlgorithm::run() + * + * @note The function call is delegated to another ConsensusAlgorithm implementation. */ virtual void run() override;