pub fn graph_edit_distance<N, E, Ix>(
graph1: &Graph<N, E, Ix>,
graph2: &Graph<N, E, Ix>,
) -> usize
Expand description
Compute the graph edit distance between two graphs
This is a simplified version that counts the number of edge additions/deletions needed to transform one graph into another.