Hi,
Thanks for the scala graph library !
I am using version 1.12.5 for compatibility with Spark.
I created a graph (weighted undirected) and am iterating through the subgraphs using componentTraverser.
Then for each subgraph I am finding the minimum weight and then finding the edges with minimum weight and removing those edges to create more subgraphs ( will be recursive )
When I am trying to get the minimum edges using this code
val minEdges = g1.edges.filter(edge => edge.weight == minWeight )
As per documentation it should return Set[g.EdgeT]
but its giving Set[Graph] am I missing something here ?
Thanks,
Jose