Questions tagged [dependency-analysis]

17 questions
10
votes
5 answers

Package Dependency

I have a huge Java Application with numerous packages. Some of the classes in these packages have dependency on classes in other packages. Given a class, I want to know all the dependent classes on it and vice-versa. A GUI tool should be really…
user170008
  • 1,046
  • 6
  • 17
  • 31
5
votes
2 answers

OpenMP gets significantly slower when Array reaches certain size

I am trying to solve a homework example at parallel computing. Here is the given code snippet: for (int i=0; i < n-1; i++) { x[i] = (y[i] + x[i+1]) / 7; } We have to analyze the code snippet regarding dependencies and try to parallelize the…
Zagatho
  • 523
  • 1
  • 6
  • 22
4
votes
3 answers

Recommend Source Code Comprehension Tool

Do any of you use Source Code Comprehension tools for Java? Can you recommend one? I'm looking for something that visualizes the dependencies between jars/packages/classes.
Can't Tell
  • 12,714
  • 9
  • 63
  • 91
3
votes
1 answer

What algorithms can analyse call dependencies for library fission?

Suppose I have a library which contains a bunch of interdependent functions, this library is too big and I want to split it up. What algorithms are there to find suitable partitions? Simple example, there are four functions in it: alpha, beta,…
spraff
  • 32,570
  • 22
  • 121
  • 229
2
votes
1 answer

tool for java dependency analyze

When maintenancing software of enterprise system, specifing influence part againist fixing part is important. But, I think the maintenance teams that establish the method of specifing influence part are very few. At least, my team don't establish…
kouhei.toki
  • 83
  • 1
  • 6
2
votes
0 answers

Maven project doesn't pass tests after removing unused dependencies

I have a maven project where I want to reduce the number of dependencies with a pom.xml file looking like this: com.proj.itt web-app-out 1.0-SNAPSHOT
Nexon
  • 326
  • 1
  • 11
2
votes
0 answers

Calculate dependencies between different c files with frama-c

I am trying to compute the variable dependencies in a project with different c files. Each of those files has a main function, and they are not calling each other. However they have shared variables and I need to calculate the final dependencies…
J. Abe
  • 45
  • 6
2
votes
3 answers

Refactoring to separate business logic from code behind

I've inherited a asp.net project and I'm finding that the code behind pages contain a lot of business logic. I've decided that in most cases it's better to leave the working code in place than try and do a massive refactoring. However there are…
Aheho
  • 12,622
  • 13
  • 54
  • 83
1
vote
2 answers

Are there tools that trace from a database table to java classes?

There are many tools that trace dependency between java classes like Lattix, But, Are there tools that trace from a database table to java classes ?(Ideally, create CRUD table automatically)
kouhei.toki
  • 83
  • 1
  • 6
1
vote
1 answer

Dependency Structure Matrix plugin to analyze C# project in SonarQube

Is there a Dependency Structure Matrix tool for C# project in SonarQube. The closet result i found is below, but it is outdated. I know there is one for…
1
vote
2 answers

c++ find dependent files

I have been looking a method or utility to find dependent files for a large scale C/C++ project. What I want is, when a file is changed(committed), I want our buildbot to run tests of the classes related to the changed file. Any help would be…
0
votes
1 answer

In Eclipse, how can I move project files without dependencies on a library to a more abstract project?

I have two Eclipse projects: one that depends upon a certain library (android.jar) and one that is more abstract and doesn't contain that dependency. I am in the process of migrating all classes that have no dependencies on the package, in my case…
0
votes
0 answers

How to authenticate with the oss index in an sbt-dependency-check?

we have an sbt project using sbt-dependency-check, and we are trying to authenticate with the oss index as part of our build. Are you able to provide an example sbt command that uses dependencyCheckOSSIndexAnalyzerUsername and…
0
votes
0 answers

Tools available for analyzing the dependencies in a maven based project/s

I am working towards creating a Auto Test Case Selection tool, but before that I need to extract the dependencies of the class/method in a list of projects. I have heard of JDEP, but it seems that only works after Java 8. I want some tool, that can…
Sumit Roy
  • 49
  • 6
0
votes
1 answer

Make Frama-c show dependencies even of "dead branches"

I am using frama-c Aluminium-20160502 version and I want to find out the dependencies in a large program. When using the option -deps in the command line I found some dependencies are missing. In particular when several conditions are joined in one…
J. Abe
  • 45
  • 6
1
2