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
Graph(1~>2, 2~>1).topologicalSort returns Right instead of Left while Graph(1~>2, 2~>3, 3~>4, 4~>2).topologicalSort returns Left.
Graph(1~>2, 2~>1).topologicalSort
Right
Left
Graph(1~>2, 2~>3, 3~>4, 4~>2).topologicalSort
The text was updated successfully, but these errors were encountered:
93b01e9
Hello, I've encountered exactly this bug in my code, nice to see it fixed, thanks! Do you have plans to release a version with this fix?
Sorry, something went wrong.
You're welcome. The next release including this fix should be available later this month.
Please refer to release 1.11.3.
Great, thanks!
No branches or pull requests
Graph(1~>2, 2~>1).topologicalSort
returns
Right
instead ofLeft
whileGraph(1~>2, 2~>3, 3~>4, 4~>2).topologicalSort
returns
Left
.The text was updated successfully, but these errors were encountered: