We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The vertex names in the result of IGBipartiteProjections are sometimes mixed up, depending on the ordering of the given partitions.
IGBipartiteProjections
g = IGShorthand["1-a,1-b,1-c,2-a,2-c,3-d,a-3"]
Graph[#, VertexLabels -> Automatic] & /@ IGBipartiteProjections[g, {{"a", "d", "c", "b"}, {1, 2, 3}}]
Notice that in the result the names/labels of b and d are incorrectly exchanged.
b
d
Using IGBipartiteProjections[g, {{"a", "b", "c", "d"}, {1, 2, 3}}] (not the positions of b and d in the input) would be fine.
IGBipartiteProjections[g, {{"a", "b", "c", "d"}, {1, 2, 3}}]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The vertex names in the result of
IGBipartiteProjections
are sometimes mixed up, depending on the ordering of the given partitions.Notice that in the result the names/labels of
b
andd
are incorrectly exchanged.Using
IGBipartiteProjections[g, {{"a", "b", "c", "d"}, {1, 2, 3}}]
(not the positions ofb
andd
in the input) would be fine.The text was updated successfully, but these errors were encountered: