networkx 2.8.2 Pypi GitHub Homepage
Other Docs
ParametersRaisesReturnsBackRef
is_negatively_weighted(G, edge=None, weight='weight')

Parameters

G : graph

A NetworkX graph.

edge : tuple, optional

A 2-tuple specifying the only edge in G that will be tested. If None, then every edge in G is tested.

weight: string, optional :

The attribute name used to query for edge weights.

Raises

NetworkXError

If the specified edge does not exist.

Returns

bool

A boolean signifying if G, or the specified edge, is negatively weighted.

Returns True if G has negatively weighted edges.

Examples

>>> G = nx.Graph()
... G.add_edges_from([(1, 3), (2, 4), (2, 6)])
... G.add_edge(1, 2, weight=4)
... nx.is_negatively_weighted(G, (1, 2)) False
>>> G[2][4]["weight"] = -2
... nx.is_negatively_weighted(G) True
>>> G = nx.DiGraph()
... edges = [("0", "3", 3), ("0", "1", -5), ("1", "0", -2)]
... G.add_weighted_edges_from(edges)
... nx.is_negatively_weighted(G) True
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

networkx.classes.function.is_negatively_weighted

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /networkx/classes/function.py#1027
type: <class 'function'>
Commit: