is_threshold_graph#

is_threshold_graph(G)[source]#

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

Parameters:
GNetworkX 图实例

一个 GraphDiGraphMultiGraphMultiDiGraph 的实例

Returns:
bool

如果 G 是一个阈值图,则返回 True ,否则返回 False

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