You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would really suggest to try our best to make MetaGraphs.jl obselete. So this would mean that the implementation of a MetaGraph should be type-stable for performance but also fallback to a generic struct using Any types for flexibility.
I'm not sure yet how it will look like, but I don't think a fallback is a great idea. I think if users want metadata of type Any, they have to say it explicitly. Strictly typed metadata is also a safeguard against bad code
In addition to the interface, this package should probably contain basic implementations for the most common types of graphs.
Here's a possible list:
(Simple)(Di)Graph
1:n
(Simple)Weighted(Di)Graph
1:n
(Simple)Meta(Di)Graph
1:n
(Simple)VertexSafe(Di)Graph
For each one, we will provide both the simple version (no multi-edges, possible self-loops) and the generic version.
The text was updated successfully, but these errors were encountered: