-
Notifications
You must be signed in to change notification settings - Fork 2
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
Improvement to Inheritance structure needed #24
Labels
Comments
With the following query MATCH
(user:AdaDeclaration)-[:References]->(provider:AdaDeclaration),
(user)-[:Source]->(file:File),
(provider)-[:Source]->(adsFile:AdaSpecificationFile)
WHERE
adsFile.name ENDS WITH "rejuvenation.ads"
RETURN file.relativeName, count(user) ORDER BY count(user) DESC the results are easier to interpret.
One reason for this organization is that the With Use clauses of the parent is available to the child. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When running the cyper query
on the current graphml file from rejuvenation library (obtained with Dependency_Graph_Extractor)
one gets
Should the instances with only one reference (hence only include the "Rejuvenation" package, yet use none of its declarations)
remain part of the rejuvenation inheritance hierarchy?
Especially, file utils and string utils are NOT specific for rejuvenation!
@arjan.mooij What is your opinion?
The text was updated successfully, but these errors were encountered: