Skip to content

Commit

Permalink
Refactor HangingNodes::setup_constraints()
Browse files Browse the repository at this point in the history
  • Loading branch information
peterrum committed Nov 23, 2021
1 parent aa95195 commit 6c01b49
Show file tree
Hide file tree
Showing 7 changed files with 627 additions and 399 deletions.
6 changes: 3 additions & 3 deletions include/deal.II/matrix_free/dof_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ namespace internal
template <int dim>
bool
process_hanging_node_constraints(
const HangingNodes<dim> & hanging_nodes,
const std::vector<unsigned int> &lexicographic_mapping,
const unsigned int cell_number,
const HangingNodes<dim> & hanging_nodes,
const std::vector<std::vector<unsigned int>> &lexicographic_mapping,
const unsigned int cell_number,
const TriaIterator<DoFCellAccessor<dim, dim, false>> &cell,
std::vector<types::global_dof_index> & dof_indices);

Expand Down
6 changes: 3 additions & 3 deletions include/deal.II/matrix_free/dof_info.templates.h
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,9 @@ namespace internal
template <int dim>
bool
DoFInfo::process_hanging_node_constraints(
const HangingNodes<dim> & hanging_nodes,
const std::vector<unsigned int> &lexicographic_mapping,
const unsigned int cell_number,
const HangingNodes<dim> & hanging_nodes,
const std::vector<std::vector<unsigned int>> &lexicographic_mapping,
const unsigned int cell_number,
const TriaIterator<DoFCellAccessor<dim, dim, false>> &cell,
std::vector<types::global_dof_index> & dof_indices)
{
Expand Down

0 comments on commit 6c01b49

Please sign in to comment.