-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
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 cycles display mode shows useless information and does not work properly for larger projects. #197
Comments
Hi @ArturLew and thank you for your interest in pydeps. The problem you're seeing might be because the graph is pruned too much before cycle analysis is run..? Could you try adding This problem doesn't show up on the examples I have in the testsuite, so I'd likely need something to test against to investigate it further... |
Similar issue here. It generates different diagrams each run for --show-cycles. Unfortunately, I cannot share the diagrams. |
See my previous comment. Without being able to reproduce the problem it is unlikely that I'll be able to fix it. |
@thebjorn thanks for the tip on
I would like to confirm…
I have yet to find a value for PS: With regard to the non-determinism, my guess would be that GraphViz input is changing and that adding |
Hi @hartwork and thank you for the test case. Very useful :-) Adding sorted in a few places improves things, at least to the point where I'm convinced the |
@thebjorn thanks for your positive response! I'm a bit too swamped to have a closer look at the code myself right now, but great to know that there is interest in getting this improved, would be great 👍 |
Hello, first of all thanks for the project, I find it quite useful. If I understand correctly the following looks a bit excessive in
Let's say we have two cycle A<->B and B<->C: Starting traverse on Then starting Maybe it's only part of the problem as it should only affect intersecting cycles, so I don't see how it would create island. Not sure if I will be able to make a fix. I'll try. |
Hi @emilienDespres , I think I got to the bibliography from this paper "On Algorithms for Enumerating All Circuits of a Graph" (https://epubs.siam.org/doi/10.1137/0205007). As far as I remember the algorithm by Donald Johnson (https://www.cs.tufts.edu/comp/150GA/homeworks/hw1/Johnson%2075.PDF) was the most efficient generally, although I don't know if the import graph is a special case where an other (simpler?) algorithm would suffice. I'm in the middle of a huge project so I won't have any time to implement this for a while, but I'm always happy to merge a PR. |
Hi there!
The project looks promising and I wanted to use it to find a cyclic loop when importing modules in my project.
Unfortunately it only works for trivial cases :(
For more complex cases (like mine) the result generated from the application is purely random - not only was the application unable to correctly locate the source of the problem for me, but it generates a different dependency graph each time.
I tested on: Python 3.11.2 and Python 3.11.5
Platform: Windows 11
Used command line:
For three calls - tree different outputs:
The text was updated successfully, but these errors were encountered: