Skip to content

Commit 63ad414

Browse files
authored
Merge pull request #3444 from jwpeterson/boundary_info_typedef
Use existing BoundaryInfo::BCTuple in a couple more places
2 parents 3adbd23 + 5a824c9 commit 63ad414

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

include/mesh/boundary_info.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -674,8 +674,7 @@ class BoundaryInfo : public ParallelObject
674674
* (elem-id, side-id, bc-id) triplets and returns it to the user,
675675
* taking advantage of guaranteed RVO.
676676
*/
677-
std::vector<std::tuple<dof_id_type, unsigned short int, boundary_id_type>>
678-
build_active_side_list () const;
677+
std::vector<BCTuple> build_active_side_list () const;
679678

680679
/**
681680
* Creates a list of element numbers, edges, and boundary ids for those edges.
@@ -698,8 +697,7 @@ class BoundaryInfo : public ParallelObject
698697
* (elem-id, side-id, bc-id) triplets and returns it to the user,
699698
* taking advantage of guaranteed RVO.
700699
*/
701-
std::vector<std::tuple<dof_id_type, unsigned short int, boundary_id_type>>
702-
build_edge_list() const;
700+
std::vector<BCTuple> build_edge_list() const;
703701

704702
/**
705703
* Creates a list of element numbers, shellfaces, and boundary ids for those shellfaces.
@@ -722,8 +720,7 @@ class BoundaryInfo : public ParallelObject
722720
* (elem-id, side-id, bc-id) triplets and returns it to the user,
723721
* taking advantage of guaranteed RVO.
724722
*/
725-
std::vector<std::tuple<dof_id_type, unsigned short int, boundary_id_type>>
726-
build_shellface_list() const;
723+
std::vector<BCTuple> build_shellface_list() const;
727724

728725
/**
729726
* Synchronize the boundary element side and node across processors.

0 commit comments

Comments
 (0)