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
The graph seems to know that it should have an edge between "2" and "3", but getindex(graph, "2", "3") (and the reverse order too) fail. Is this a known problem?
A fix seems to be to sort all edge labels alphabetically in the third argument to the MetaGraph() constructor, but in my real application that's not very convenient.
The text was updated successfully, but these errors were encountered:
Here's a chunk of code demonstrating what seems like a problem:
The graph seems to know that it should have an edge between
"2"
and"3"
, butgetindex(graph, "2", "3")
(and the reverse order too) fail. Is this a known problem?A fix seems to be to sort all edge labels alphabetically in the third argument to the
MetaGraph()
constructor, but in my real application that's not very convenient.The text was updated successfully, but these errors were encountered: