From d125c45033543185d2efc20ea77c0a6b81ef2703 Mon Sep 17 00:00:00 2001 From: Brenda Praggastis Date: Wed, 15 May 2024 17:07:33 -0700 Subject: [PATCH] updated doc strings for s-connected components --- hypernetx/classes/hypergraph.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/hypernetx/classes/hypergraph.py b/hypernetx/classes/hypergraph.py index e30002f9..8ce75bfb 100644 --- a/hypernetx/classes/hypergraph.py +++ b/hypernetx/classes/hypergraph.py @@ -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 `. + Determines if hypergraph is :term:`s-connected`. Parameters ---------- @@ -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 - ` - or the :term:`s-node-connected components ` of the hypergraph. + Returns a generator for the :term:`s-edge-connected components` + or the :term:`s-node-connected components` of the hypergraph. Parameters ----------