Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the spelling of a function name. #13072

Merged
merged 1 commit into from
Dec 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions source/distributed/repartitioning_policy_tools.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace RepartitioningPolicyTools
{
template <int dim, int spacedim>
void
add_indices_recursevly_for_first_child_policy(
add_indices_recursively_for_first_child_policy(
const TriaIterator<CellAccessor<dim, spacedim>> &cell,
const internal::CellIDTranslator<dim> & cell_id_translator,
IndexSet & is_fine)
Expand All @@ -41,9 +41,9 @@ namespace RepartitioningPolicyTools

if (cell->level() > 0 &&
(cell->index() % GeometryInfo<dim>::max_children_per_cell) == 0)
add_indices_recursevly_for_first_child_policy(cell->parent(),
cell_id_translator,
is_fine);
add_indices_recursively_for_first_child_policy(cell->parent(),
cell_id_translator,
is_fine);
}
} // namespace

Expand Down Expand Up @@ -123,9 +123,9 @@ namespace RepartitioningPolicyTools

for (const auto &cell : tria_fine.active_cell_iterators())
if (cell->is_locally_owned())
add_indices_recursevly_for_first_child_policy(cell,
cell_id_translator,
is_level_partitions);
add_indices_recursively_for_first_child_policy(cell,
cell_id_translator,
is_level_partitions);
}


Expand Down