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

Replace ITERATOR -> IteratorType. #16227

Merged
merged 1 commit into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions include/deal.II/dofs/dof_renumbering.h
Original file line number Diff line number Diff line change
Expand Up @@ -749,12 +749,12 @@ namespace DoFRenumbering
* Does not perform the renumbering on the DoFHandler dofs but returns the
* renumbering vector.
*/
template <int dim, int spacedim, class ITERATOR, class ENDITERATOR>
template <int dim, int spacedim, class IteratorType, class EndIteratorType>
types::global_dof_index
compute_block_wise(std::vector<types::global_dof_index> &new_dof_indices,
const ITERATOR &start,
const ENDITERATOR &end,
bool is_level_operation);
const IteratorType &start,
const EndIteratorType &end,
const bool is_level_operation);

/**
* @}
Expand Down
8 changes: 4 additions & 4 deletions source/dofs/dof_renumbering.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1048,11 +1048,11 @@ namespace DoFRenumbering



template <int dim, int spacedim, class ITERATOR, class ENDITERATOR>
template <int dim, int spacedim, class IteratorType, class EndIteratorType>
types::global_dof_index
compute_block_wise(std::vector<types::global_dof_index> &new_indices,
const ITERATOR &start,
const ENDITERATOR &end,
const IteratorType &start,
const EndIteratorType &end,
const bool is_level_operation)
{
const hp::FECollection<dim, spacedim> &fe_collection =
Expand Down Expand Up @@ -1104,7 +1104,7 @@ namespace DoFRenumbering
// take care of that
std::vector<std::vector<types::global_dof_index>> block_to_dof_map(
fe_collection.n_blocks());
for (ITERATOR cell = start; cell != end; ++cell)
for (IteratorType cell = start; cell != end; ++cell)
{
if (is_level_operation)
{
Expand Down