Skip to content

Commit

Permalink
updated glossary to remove duplicate terms and docstring to fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
brendapraggastis committed May 16, 2024
1 parent d125c45 commit 34f047a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 174 deletions.
166 changes: 0 additions & 166 deletions docs/source/glossary

This file was deleted.

10 changes: 4 additions & 6 deletions docs/source/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ These hypergraph components are instantiate with three hypergraph objects for th
PropertyStore. By storing the data and metadata in a single place, updates and references have a single source of
truth.

IncidenceStore
Class in icidence_store.py. The minimal amount of data required to instantiate a hypergraph is a set of Incidences, :math:`\mathcal{I}`. The
Edges and Nodes can be inferred from the pairs :math:`(e,v)` in the Incidences.

hypergraph
A hypergraph is a tuple of three sets, :math:`H = (V, E, \mathcal{I})`.

Expand All @@ -57,8 +53,10 @@ These hypergraph components are instantiate with three hypergraph objects for th
edges incident with the same set of nodes or nodes incident with the same set of edges are collapsed to single objects.

IncidenceStore
A set of ordered pairs of Edges and Nodes.
A subset of Edges :math:`\times` Nodes.
Class in incidence_store.py. A set of ordered pairs of Edges and Nodes, i.e. a subset of Edges :math:`\times` Nodes.
The minimal amount of data required to instantiate a hypergraph is a set of Incidences, :math:`\mathcal{I}`. The
Edges and Nodes of a Hypergraph can be inferred from the pairs :math:`(e,v)` in the Incidences.

Each ordered pair uniquely identifies a single
incidence. Each incidence has metadata assigned to it. Incidences
in a hypergraph are assigned a weight either by default or specified by a user.
Expand Down
4 changes: 2 additions & 2 deletions hypernetx/classes/hypergraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -2070,8 +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 component`
or the :term:`s-node-connected component` of the hypergraph.
Parameters
----------
Expand Down

0 comments on commit 34f047a

Please sign in to comment.