SimpleValueGraphs.jl
SimpleValueGraphs.jl copied to clipboard
A LightGraphs.jl compatible graph package for graphs with multiple vertex, edge and graph metadata.
Hi there :wave: I tried to code a first version of `rem_vertex!` by drawing inspiration from the one in `LightGraphs.jl`. It only works on `ValGraph` for now, because I wanted...
Currently `rem_vertex!` is not implemented for for `ValGraph`, `ValDiGraph`, `ValOutDiGraph`, but it should not be too difficult to implement that.
Currenty `Base.zero` is not implemented for the types `ValGraph`, `ValDiGraph`, ValOutDiGraph`. Implementing these methods is necessay so that these graphs completely satisfy the [LightGraphs.AbstractGraph interface](https://juliagraphs.org/LightGraphs.jl/latest/types/#AbstractGraph-Type).
How does this package compare to MetaGraphsNext.jl ? Are there any differences in the targeted use-cases, because to me they look very similar ?