rustworkx.PyGraph.add_edges_from_no_data#
- PyGraph.add_edges_from_no_data(obj_list, /)#
Add new edges to the graph without python data.
- Parameters:
obj_list (list) – A list of tuples of the form
(parent, child)
to attach to the graph.parent
andchild
are integer indices describing where an edge should be added. Unlikeadd_edges_from()
there is no data payload and when the edge is created None will be used.
If
multigraph
isFalse
and an edge already exists betweennode_a
andnode_b
the weight/payload of that existing edge will be updated to beNone
.- Returns:
A list of int indices of the newly created edges
- Return type:
list