From bd966a5c448211bac58509de20f019afebea4485 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 26 Aug 2024 17:16:17 -0600 Subject: [PATCH] Use naming of a type used elsewhere. --- .../lac/affine_constraints.templates.h | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/include/deal.II/lac/affine_constraints.templates.h b/include/deal.II/lac/affine_constraints.templates.h index 477c79444a..bcf83cf3bb 100644 --- a/include/deal.II/lac/affine_constraints.templates.h +++ b/include/deal.II/lac/affine_constraints.templates.h @@ -305,9 +305,9 @@ namespace internal const MPI_Comm mpi_communicator) { // The result vector filled step by step. - using ConstraintType = + using ConstraintLine = typename dealii::AffineConstraints::ConstraintLine; - std::vector locally_relevant_constraints; + std::vector locally_relevant_constraints; #ifndef DEAL_II_WITH_MPI AssertThrow(false, ExcNotImplemented()); // one should not come here @@ -322,13 +322,13 @@ namespace internal // helper function const auto sort_and_make_unique = [&constraints_in, &locally_owned_dofs]( - std::vector + std::vector &locally_relevant_constraints) { (void)constraints_in; if (locally_relevant_constraints.empty()) return; - for (ConstraintType &entry : locally_relevant_constraints) + for (ConstraintLine &entry : locally_relevant_constraints) std::sort(entry.entries.begin(), entry.entries.end(), [](const auto &l1, const auto &l2) { @@ -337,7 +337,7 @@ namespace internal std::sort(locally_relevant_constraints.begin(), locally_relevant_constraints.end(), - [](const ConstraintType &l1, const ConstraintType &l2) { + [](const ConstraintLine &l1, const ConstraintLine &l2) { return l1.index < l2.index; }); @@ -351,9 +351,9 @@ namespace internal return false; }; - typename std::vector::iterator read_ptr = + typename std::vector::iterator read_ptr = locally_relevant_constraints.begin(); - typename std::vector::iterator write_ptr = + typename std::vector::iterator write_ptr = locally_relevant_constraints.begin(); // go through sorted locally relevant constraints and look out for // duplicates (same constrained index, same entries) or cases that need @@ -368,8 +368,8 @@ namespace internal } else // equal global dof index { - ConstraintType &a = *write_ptr; - const ConstraintType &b = *read_ptr; + ConstraintLine &a = *write_ptr; + const ConstraintLine &b = *read_ptr; Assert(a.index == b.index, ExcInternalError()); if (!equal_with_tol(a.inhomogeneity, b.inhomogeneity) && locally_owned_dofs.is_element(b.index)) @@ -381,8 +381,8 @@ namespace internal a.inhomogeneity = b.inhomogeneity; } - typename ConstraintType::Entries &av = a.entries; - const typename ConstraintType::Entries &bv = b.entries; + typename ConstraintLine::Entries &av = a.entries; + const typename ConstraintLine::Entries &bv = b.entries; // check if entries vectors are equal bool vectors_are_equal = (av.size() == bv.size()); for (unsigned int i = 0; vectors_are_equal && i < av.size(); ++i) @@ -398,7 +398,7 @@ namespace internal // second entry if (!vectors_are_equal) { - typename ConstraintType::Entries cv; + typename ConstraintLine::Entries cv; cv.reserve(av.size() + bv.size()); unsigned int i = 0; @@ -477,11 +477,11 @@ namespace internal affine_constraints_make_consistent_in_parallel_0; // ... collect data and sort according to owner - std::map> send_data_temp; + std::map> send_data_temp; for (unsigned int i = 0; i < constrained_indices_owners.size(); ++i) { - ConstraintType entry; + ConstraintLine entry; const types::global_dof_index index = constrained_indices.nth_index_in_set(i); @@ -504,7 +504,7 @@ namespace internal std::map> send_data; for (const typename std::map>::value_type &i : + std::vector>::value_type &i : send_data_temp) send_data[i.first] = Utilities::pack(i.second, false); @@ -560,7 +560,7 @@ namespace internal AssertThrowMPI(ierr); const auto data = - Utilities::unpack>(buffer, false); + Utilities::unpack>(buffer, false); for (const auto &i : data) locally_relevant_constraints.push_back(i); @@ -613,13 +613,13 @@ namespace internal { Assert(rank_and_indices.first != my_rank, ExcInternalError()); - std::vector data; + std::vector data; for (const types::global_dof_index index : rank_and_indices.second) { // note: at this stage locally_relevant_constraints still // contains only locally owned constraints - const typename std::vector::iterator ptr = + const typename std::vector::iterator ptr = std::find_if(locally_relevant_constraints.begin(), locally_relevant_constraints.end(), [index](const auto &a) { @@ -679,9 +679,9 @@ namespace internal MPI_STATUS_IGNORE); AssertThrowMPI(ierr); - const std::vector + const std::vector received_locally_relevant_constrain = - Utilities::unpack>(buffer, false); + Utilities::unpack>(buffer, false); for (const auto &locally_relevant_constrain : received_locally_relevant_constrain) -- 2.39.5