-
Notifications
You must be signed in to change notification settings - Fork 66
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
Recursive inheritance depth analysis causes StackOverflows in large projects #52
Labels
Comments
Temporarily patched with Exception handling. |
I think this is related: When I run Designite over the Android project SteamGifts I get weird overflow messages:
This sentenced get repeated several times in the output. Notes:
|
Hi, |
Hi,
The work around of course is to exchange recursion with a more itterative
approach. As far as I remember I used recursion
in graph class where a DFS is used. The workaround is to use a stack (data
structure) to keep track on what
the algorithm has explored.
I don't think it is too troublesome to tweek the code, once the DFS
functionality is found.
…-------
T.Stassinopoulos
On Fri, Apr 5, 2019 at 9:04 PM Willian Nalepa Oizumi < ***@***.***> wrote:
Hi,
I'm facing the same problem when analyzing large projects such as
Elasticsearch (v1.2.2).
Is there any workaround for this problem?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#52 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AKvKoNf5Ej0GxsyYtlaXApYxV7z_BlAEks5vd5AogaJpZM4U3qCk>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: