is_bipartite
Returns True if graph G is bipartite, False if not.
G (NetworkX graph)
Examples
>>> from networkx.algorithms import bipartite >>> G = nx.path_graph(4) >>> print(bipartite.is_bipartite(G)) True
See also
color(), is_bipartite_node_set()
color()
is_bipartite_node_set()