库中有两个相同的方法 "vertex_disjoint_paths" 和 "cohesion"?

Two identical methods "vertex_disjoint_paths" and "cohesion" in the library?

我对 python 的 igraph 库中存在两个具有相同功能的相同方法感到一致。 函数是:"vertex_disjoint_paths" 和 "cohesion" 用于 $k-vertex-connectivity$。 并且,类似地,"edge_disjoint_paths" 和 "adhesion" 用于 $k-edge-connectivity$。

这些只是别名:

>>> from igraph import Graph
>>> Graph.adhesion == Graph.edge_connectivity == Graph.edge_disjoint_paths
True
>>> Graph.cohesion == Graph.vertex_connectivity == Graph.vertex_disjoint_paths
True