From: Wolfgang Bangerth Date: Fri, 11 Feb 2022 00:44:16 +0000 (-0700) Subject: Use standard spacing between functions. X-Git-Tag: v9.4.0-rc1~510^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13360%2Fhead;p=dealii.git Use standard spacing between functions. --- diff --git a/include/deal.II/base/mpi.h b/include/deal.II/base/mpi.h index 5adb7c9880..6c99d8867c 100644 --- a/include/deal.II/base/mpi.h +++ b/include/deal.II/base/mpi.h @@ -1278,6 +1278,7 @@ namespace Utilities std::set compute_set_union(const std::set &set, const MPI_Comm &comm); + #ifndef DOXYGEN // declaration for an internal function that lives in mpi.templates.h namespace internal @@ -1290,6 +1291,8 @@ namespace Utilities const ArrayView & output); } + + // Since these depend on N they must live in the header file template void @@ -1301,6 +1304,8 @@ namespace Utilities ArrayView(sums, N)); } + + template void max(const T (&values)[N], const MPI_Comm &mpi_communicator, T (&maxima)[N]) @@ -1311,6 +1316,8 @@ namespace Utilities ArrayView(maxima, N)); } + + template void min(const T (&values)[N], const MPI_Comm &mpi_communicator, T (&minima)[N]) @@ -1321,6 +1328,8 @@ namespace Utilities ArrayView(minima, N)); } + + template void logical_or(const T (&values)[N], @@ -1336,6 +1345,8 @@ namespace Utilities ArrayView(results, N)); } + + template std::map some_to_some(const MPI_Comm & comm, @@ -1513,6 +1524,8 @@ namespace Utilities # endif } + + template std::vector gather(const MPI_Comm & comm,