当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python NetworkX is_threshold_graph用法及代码示例


本文简要介绍 networkx.algorithms.threshold.is_threshold_graph 的用法。

用法:

is_threshold_graph(G)

如果 G 是阈值图,则返回 True

参数

GNetworkX 图形实例

GraphDiGraphMultiGraphMultiDiGraph 的实例

返回

bool

True 如果 G 是阈值图,则 False 否则。

参考

1

Threshold graphs: https://en.wikipedia.org/wiki/Threshold_graph

例子

>>> from networkx.algorithms.threshold import is_threshold_graph
>>> G = nx.path_graph(3)
>>> is_threshold_graph(G)
True
>>> G = nx.barbell_graph(3, 3)
>>> is_threshold_graph(G)
False

相关用法


注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.algorithms.threshold.is_threshold_graph。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。