Skip to content

Commit

Permalink
Intrepid2: support shards::Node in getCellTopologyData(). (#13594)
Browse files Browse the repository at this point in the history
Signed-off-by: Nate Roberts <[email protected]>
  • Loading branch information
CamelliaDPG authored Nov 12, 2024
1 parent 595ef1b commit ccf9207
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/intrepid2/src/Cell/Intrepid2_CellData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const CellTopologyData*
Intrepid2::getCellTopologyData(const unsigned& cellTopologyKey){
const CellTopologyData* cellTopologyData;
switch (cellTopologyKey) {
case shards::Node::key:
cellTopologyData = shards::getCellTopologyData<shards::Node>();
break;
case shards::Line<2>::key:
cellTopologyData = shards::getCellTopologyData<shards::Line<2>>();
break;
Expand Down

0 comments on commit ccf9207

Please sign in to comment.