Skip to content

Commit 3915e69

Browse files
committed
Remove top-level docstrings
1 parent 3f68114 commit 3915e69

9 files changed

+0
-47
lines changed

graphdatascience/procedure_surface/api/centrality/articlerank_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class ArticleRankEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the ArticleRank algorithm.
17-
"""
1815

1916
@abstractmethod
2017
def mutate(

graphdatascience/procedure_surface/api/centrality/articulationpoints_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010

1111

1212
class ArticulationPointsEndpoints(ABC):
13-
"""
14-
Abstract base class defining the API for the Articulation Points algorithm.
15-
"""
1613

1714
@abstractmethod
1815
def mutate(

graphdatascience/procedure_surface/api/centrality/betweenness_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class BetweennessEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Betweenness Centrality algorithm.
17-
"""
1815

1916
@abstractmethod
2017
def mutate(

graphdatascience/procedure_surface/api/centrality/celf_endpoints.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@
1212

1313

1414
class CelfEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Cost Effective Lazy Forward (CELF) algorithm.
17-
18-
The CELF algorithm aims to find k nodes that maximize the expected spread of influence
19-
in the network.
20-
"""
2115

2216
@abstractmethod
2317
def mutate(

graphdatascience/procedure_surface/api/centrality/closeness_endpoints.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@
1212

1313

1414
class ClosenessEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Closeness Centrality algorithm.
17-
18-
Closeness centrality measures how close a node is to all other nodes in the network.
19-
It's calculated as the reciprocal of the sum of the shortest path distances from
20-
the node to all other nodes in the graph.
21-
"""
2215

2316
@abstractmethod
2417
def mutate(

graphdatascience/procedure_surface/api/centrality/closeness_harmonic_endpoints.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@
1212

1313

1414
class ClosenessHarmonicEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Harmonic Centrality algorithm.
17-
18-
Harmonic centrality is a variant of closeness centrality that uses the
19-
harmonic mean of shortest path distances. It handles disconnected graphs better
20-
than standard closeness centrality.
21-
"""
2215

2316
@abstractmethod
2417
def mutate(

graphdatascience/procedure_surface/api/centrality/degree_endpoints.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@
1212

1313

1414
class DegreeEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Degree Centrality algorithm.
17-
18-
Degree centrality measures the number of incoming and outgoing relationships from a node.
19-
It's one of the simplest centrality measures, where a node's importance is determined by
20-
the number of direct connections it has.
21-
"""
2215

2316
@abstractmethod
2417
def mutate(

graphdatascience/procedure_surface/api/centrality/eigenvector_endpoints.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,6 @@
1212

1313

1414
class EigenvectorEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the Eigenvector Centrality algorithm.
17-
18-
Eigenvector centrality measures the influence of a node in a network based on the
19-
concept that connections to high-scoring nodes contribute more to the score than
20-
equal connections to low-scoring nodes. It's computed as the principal eigenvector
21-
of the adjacency matrix.
22-
"""
2315

2416
@abstractmethod
2517
def mutate(

graphdatascience/procedure_surface/api/centrality/pagerank_endpoints.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313

1414
class PageRankEndpoints(ABC):
15-
"""
16-
Abstract base class defining the API for the PageRank algorithm.
17-
"""
1815

1916
@abstractmethod
2017
def mutate(

0 commit comments

Comments
 (0)