Skip to content

Commit

Permalink
updated doc strings for s-connected components
Browse files Browse the repository at this point in the history
  • Loading branch information
brendapraggastis committed May 16, 2024
1 parent 771240e commit d125c45
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions hypernetx/classes/hypergraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1972,8 +1972,7 @@ def operate(a, b):
#### hypergraph method using linegraph gotten from incidence store
def is_connected(self, s=1, edges=False):
"""
Determines if hypergraph is :term:`s-connected <s-connected,
s-node-connected>`.
Determines if hypergraph is :term:`s-connected`.
Parameters
----------
Expand Down Expand Up @@ -2071,10 +2070,8 @@ def remove_singletons(self, name=None):

def s_connected_components(self, s=1, edges=True, return_singletons=False):
"""
Returns a generator for the :term:`s-edge-connected components
<s-edge-connected component>`
or the :term:`s-node-connected components <s-connected component,
s-node-connected component>` of the hypergraph.
Returns a generator for the :term:`s-edge-connected components`
or the :term:`s-node-connected components` of the hypergraph.
Parameters
----------
Expand Down

0 comments on commit d125c45

Please sign in to comment.