From: Martin Kronbichler Date: Mon, 4 Nov 2019 13:30:17 +0000 (+0100) Subject: Slightly simplify MPI::ComputeIndexOwner::Dictionary range detection X-Git-Tag: v9.2.0-rc1~906^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac7df92f375788f4a4bd190c8bcba5de8502118c;p=dealii.git Slightly simplify MPI::ComputeIndexOwner::Dictionary range detection --- diff --git a/include/deal.II/base/mpi_compute_index_owner_internal.h b/include/deal.II/base/mpi_compute_index_owner_internal.h index 00642c81b5..f02eeef239 100644 --- a/include/deal.II/base/mpi_compute_index_owner_internal.h +++ b/include/deal.II/base/mpi_compute_index_owner_internal.h @@ -143,13 +143,15 @@ namespace Utilities unsigned int owner_first = numbers::invalid_unsigned_int; while (owner_first != owner_last) { + Assert(index_range.first < index_range.second, + ExcInternalError()); + owner_first = dof_to_dict_rank(index_range.first); // this explicitly picks up the formula of // dof_to_dict_rank, so the two places must be in sync types::global_dof_index next_index = - std::min((index_range.first / dofs_per_process + 1) * - dofs_per_process, + std::min(get_index_offset(owner_first + 1), index_range.second); Assert(next_index > index_range.first, ExcInternalError()); @@ -287,7 +289,8 @@ namespace Utilities unsigned int dof_to_dict_rank(const types::global_dof_index i) { - // note: this formula is also explicitly used in reinit() + // note: this formula is also explicitly used in + // get_index_offset(), so keep the two in sync return (i / dofs_per_process) * stride_small_size; } @@ -298,8 +301,10 @@ namespace Utilities types::global_dof_index get_index_offset(const unsigned int rank) { - return std::min(dofs_per_process * ((rank + stride_small_size - 1) / - stride_small_size), + return std::min(dofs_per_process * + static_cast( + (rank + stride_small_size - 1) / + stride_small_size), size); }