Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
fdrmrc committed Aug 28, 2024
1 parent 47d08ab commit e4d8d05
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions source/agglomeration_handler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1033,8 +1033,8 @@ namespace dealii
.visited_cell_and_faces))
{
handler.polytope_cache
.interface[{current_polytope_id,
neighbor_polytope_id}]
.interface[{
current_polytope_id, neighbor_polytope_id}]
.emplace_back(cell, f);

handler.polytope_cache.visited_cell_and_faces
Expand All @@ -1048,8 +1048,8 @@ namespace dealii
.visited_cell_and_faces))
{
handler.polytope_cache
.interface[{neighbor_polytope_id,
current_polytope_id}]
.interface[{
neighbor_polytope_id, current_polytope_id}]
.emplace_back(neighboring_cell, nof);

handler.polytope_cache.visited_cell_and_faces
Expand Down Expand Up @@ -1100,8 +1100,8 @@ namespace dealii
.visited_cell_and_faces))
{
handler.polytope_cache
.interface[{current_polytope_id,
neighbor_polytope_id}]
.interface[{
current_polytope_id, neighbor_polytope_id}]
.emplace_back(cell, f);

handler.polytope_cache.visited_cell_and_faces
Expand All @@ -1114,8 +1114,8 @@ namespace dealii
.visited_cell_and_faces))
{
handler.polytope_cache
.interface[{neighbor_polytope_id,
current_polytope_id}]
.interface[{
neighbor_polytope_id, current_polytope_id}]
.emplace_back(neighboring_cell, nof);

handler.polytope_cache.visited_cell_and_faces
Expand Down Expand Up @@ -1193,8 +1193,8 @@ namespace dealii
handler.polytope_cache.visited_cell_and_faces_id))
{
handler.polytope_cache
.interface[{current_polytope_id,
check_neigh_polytope_id}]
.interface[{
current_polytope_id, check_neigh_polytope_id}]
.emplace_back(cell, f);

// std::cout << "ADDED ("
Expand All @@ -1215,8 +1215,8 @@ namespace dealii
handler.polytope_cache.visited_cell_and_faces_id))
{
handler.polytope_cache
.interface[{check_neigh_polytope_id,
current_polytope_id}]
.interface[{
check_neigh_polytope_id, current_polytope_id}]
.emplace_back(neighboring_cell, nof);

handler.polytope_cache.visited_cell_and_faces_id
Expand Down Expand Up @@ -1264,7 +1264,8 @@ namespace dealii
std::end(handler.polytope_cache.visited_cell_and_faces))
{
handler.polytope_cache
.interface[{current_polytope_id, current_polytope_id}]
.interface[{
current_polytope_id, current_polytope_id}]
.emplace_back(cell, f);

handler.polytope_cache.visited_cell_and_faces.insert(
Expand Down

0 comments on commit e4d8d05

Please sign in to comment.