我在igraph库的igraph库中存在两个相同功能的相同方法。 功能是:" vertex_disjoint_paths"和"凝聚力"对于$ k-vertex-connectivity $。 并且,类似地," edge_disjoint_paths"和"粘合" $ k-edge-connectivity $。
答案 0 :(得分:1)
这些只是别名:
>>> from igraph import Graph
>>> Graph.adhesion == Graph.edge_connectivity == Graph.edge_disjoint_paths
True
>>> Graph.cohesion == Graph.vertex_connectivity == Graph.vertex_disjoint_paths
True