is_threshold_graph#
- is_threshold_graph(G)[source]#
如果
G
是一个阈值图,则返回True
。- Parameters:
- GNetworkX 图实例
一个
Graph
、DiGraph
、MultiGraph
或MultiDiGraph
的实例
- Returns:
References
Examples
>>> 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