Closed zhaoli-IHEP closed 4 years ago
I think what you probably mean is a multigraph. Currently we do not have any muligraphs in the JuliaGraphs ecosystem.
I think what you probably mean is a multigraph. Currently we do not have any muligraphs in the JuliaGraphs ecosystem.
Yes. So do I have some other choice in the Julia market? Thanks a lot!
So do I have some other choice in the Julia market?
I haven't looked closely, but Graphs.jl might be able to do this.
Failing that, you could always write your own data structure and implement the LightGraphs API for it (11 or so functions). Then all the LightGraphs functionality becomes available to your graph type.
If you go that route, publish it :)
So do I have some other choice in the Julia market?
I haven't looked closely, but Graphs.jl might be able to do this.
Failing that, you could always write your own data structure and implement the LightGraphs API for it (11 or so functions). Then all the LightGraphs functionality becomes available to your graph type.
If you go that route, publish it :)
Thank you! This is exactly what we need.
Closing out since it looks like there's a solution. Thanks.
For example, two edges connecting "same" two vertices, like --O--
I have checked also MetaGraph, but did not find any information about this.