From 991a85602b178e0370e3898d8113f3e6079fca03 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 9 Jan 2022 06:54:07 -0700 Subject: [PATCH] Rename a function to better reflect what it does. --- include/deal.II/fe/fe_tools_extrapolate.templates.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/deal.II/fe/fe_tools_extrapolate.templates.h b/include/deal.II/fe/fe_tools_extrapolate.templates.h index 0c42e53880..2d61b259e6 100644 --- a/include/deal.II/fe/fe_tools_extrapolate.templates.h +++ b/include/deal.II/fe/fe_tools_extrapolate.templates.h @@ -318,8 +318,8 @@ namespace FETools // cells_to_send to their receivers // and receives a vector of cell_data void - send_cells(const std::vector &cells_to_send, - std::vector & received_cells) const; + exchange_data_on_cells(const std::vector &cells_to_send, + std::vector & received_cells) const; // add new cell_data to // the ordered list new_needs @@ -1164,7 +1164,7 @@ namespace FETools template void - ExtrapolateImplementation::send_cells( + ExtrapolateImplementation::exchange_data_on_cells( const std::vector &cells_to_send, std::vector & received_cells) const { @@ -1335,7 +1335,7 @@ namespace FETools // Send the cells needed to their owners and receive // a list of cells other processes need from us. - send_cells(cells_we_need, received_needs); + exchange_data_on_cells(cells_we_need, received_needs); // The list of received needs can contain some cells more than once // because different processes may need data from the same cell. @@ -1389,7 +1389,7 @@ namespace FETools // and receive data from the correct call ++round; - send_cells(cells_to_send, received_cells); + exchange_data_on_cells(cells_to_send, received_cells); // store received cell_data for (const auto &recv : received_cells) @@ -1402,7 +1402,7 @@ namespace FETools ++round; // finally send and receive new needs and start a new round - send_cells(new_needs, received_needs); + exchange_data_on_cells(new_needs, received_needs); } while (ready != 0); } -- 2.39.5