JuliaGraphs / Graphs.jl

An optimized graphs package for the Julia programming language
http://juliagraphs.org/Graphs.jl/
Other
459 stars 91 forks source link

Implement Kruskal traversal iterator #336

Open Tortar opened 8 months ago

Tortar commented 8 months ago

part of #163, to be revisited after that pr is merged

simonschoelly commented 8 months ago

To be honest, I am not sure if an iterator is of much use here. We seem to do most of the allocations when create the iterator and we also do not seem to free any memory after each iteration. But perhaps I am wrong here.