Skip to content

concatenate edge "links" attributes for multigraphs

Wout De Nolf requested to merge concatenate_links_in_multigraph into main

Allow merging link attributes which have links:

linkattrs1 = {"source": "A", "target": "B", links=[adict1]}

linkattrs2 = {"source": "A", "target": "B", links=[adict2, adict3]}

linkattrs_merged = {"source": "A", "target": "B", links=[adict1, adict2, adict3]}
Edited by Wout De Nolf

Merge request reports