JuliaGraphs / LightGraphsExtras.jl

Additional functionality for LightGraphs.jl
Other
21 stars 13 forks source link

matching code should use standard "weights" format instead of edge dicts #26

Closed sbromberger closed 6 years ago

sbromberger commented 6 years ago

ping @mburq - would you have some time to work on this? Basically, LightGraphs has standardized on

distmx::AbstractMatrix = weights(g);

as a weights representation for weight-sensitive functions. (Basically, we pass in something that looks like an AbstractMatrix that defines getindex(u, v) and returns a weight. This allows us to do lazy evaluation of weights, and defaults, and other cool stuff.)

mburq commented 6 years ago

Yes that is nice. I won't have time in the next few weeks, but I can take a pass in February if it's still open. Don't hesitate to ping me again in case I forget.

matbesancon commented 6 years ago

cool! See https://github.com/JuliaGraphs/LightGraphsMatching.jl/issues/2 for the corresponding issue on the new LightGraphsMatching.jl

matbesancon commented 6 years ago

This issue can be closed here

sbromberger commented 6 years ago

Awesome - thanks!