Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tacs/constraints/panel_length.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,8 +755,8 @@ def _getComponentBoundaryNodes(self, compIDs):
allEdges.add(key)
else:
dupEdges.add(key)
# Now get a list of all the edges that aren't duplicated, these are the boundary edges
boundaryEdges = list(allEdges - dupEdges)
# Now get a sorted list of all the edges that aren't duplicated, these are the boundary edges
boundaryEdges = sorted(allEdges - dupEdges)

# Create a nodeToElem Pointer using a dictionary:
nodeToElem = {}
Expand Down
Loading