Questions tagged [dependency-graph]
50 questions
21
votes
6 answers
Are there any PHP code visualization tools?
Looking for software that will analyze php code (i.e. all of wordpress or the thematic theme) and show me pretty pictures (perhaps a block diagram) of all the connections to help me more quickly get an understanding of where things are and what's…

Simon
- 480
- 1
- 3
- 11
7
votes
1 answer
save a dependecy graph in python
I am using in python3 the stanford dependency parser to parse a sentence, which returns a dependency graph.
import pickle
from nltk.parse.stanford import StanfordDependencyParser
parser =…

lina
- 293
- 2
- 8
7
votes
4 answers
Get a list of all functions that are called by another function
In JavaScript, is it possible to obtain a list of all functions that are called by another function? I want to create a tree of function dependencies, to analyze how the functions in a script are related to each other (and which functions are…

Anderson Green
- 30,230
- 67
- 195
- 328
6
votes
1 answer
Produce OpenMP code given dependency graph
I have a question on how to produce OpenMP pseudocode when you have a specific dependency graph in mind.
So suppose that we have this specific graph:
A solution could be something like this:
#pragma omp parallel
{
#pragma omp…

blaze9
- 89
- 1
- 9
6
votes
2 answers
How to generate dependency graph by class only for one project?
If I use:
Architecture -> Generate Dependency Graph -> By Class
it generates the graph for the entire solution.
Is there a way to cause VS to generate the dependency graph only for classes from a certain project?
I tried generating only for a…

Răzvan Flavius Panda
- 21,730
- 17
- 111
- 169
3
votes
2 answers
Javascript: is package.json dependency included in build, if it's not imported anywhere?
In project, there is some dependency package (npm install [some-name] --save) listed in package.json file, but not imported in any of my ES6 module files in source code. Will this package be included in final build (ex. rollup output)?
As far as I…

Maciej
- 83
- 1
- 7
3
votes
0 answers
Tool to view variable dependencies
I try to understand how variables in a c code influence each other. I was searching for hours for a tool. Doxygen, etc will give me call graphs (“which function calls whom?“), but does not provide information on specifically the variables/data.
A…

murph_sof
- 83
- 4
3
votes
0 answers
Jinja2 Dependencies During Render
I am trying to build a dependency graph from a render of a template and I am running into a bit of trouble trying to get good information out of jinja.
I want to be able to render a template and get back a list/set of all of the files that were used…

Randy
- 445
- 5
- 9
3
votes
1 answer
F# project is not supported for generating dependency graph?
I am using Visual Studio 2013, my solution contains both c# and f# projects. When I try to generate dependency graph for the solution, it only includes the C# projects. Is there a way to make sure the F# projects are also included? Or is there any…

Carol
- 363
- 5
- 16
3
votes
2 answers
Looking for a way to visualize dependency structure of my multi-module pom project
I have a pretty large project (~30 modules) and want to visualize module inter dependencies, excluding 3rd party.
It seems that existing tools simply can't handle the maven reactor. The maven dependency plugin (dependency:tree goal) knows how to…

Vitaliy
- 8,044
- 7
- 38
- 66
2
votes
1 answer
dotnet dependensee Access to path is denied
I would like to generate dependency graph with dotnet dependensee tool but it gives me error:
Access to the path 'C:\Users\myuser\source\repos\Mysource' is denied.
I get this error for every directory I use it for and started Command Promt as…

koviroli
- 1,422
- 1
- 15
- 27
2
votes
1 answer
Sonarqube project dependency graph
I have an existing Jenkins-Sonarqube integration for daily sonar violation check using SonarScanner. Recently there was a discussion to explore a Project Dependency Diagram_ on sonarqube, where I heard about JDepend plugin & tried integrating…

HJS
- 23
- 6
2
votes
0 answers
NLTK plot dependency graph
I'd like to plot graphs like this with NLTK. But I am not sure where is such an example in NLTK. Could anybody show some example NLTK code to plot such kind of figures? Thanks.
http://universaldependencies.org/introduction.html

user1424739
- 11,937
- 17
- 63
- 152
2
votes
1 answer
Android dependency graph
I have huge android project with many modules and library dependencies.
It was nice to show something like dependency graph in nice and clear form.
Something like this
I find some plugin for eclipse. But it´s not working properly.
Is there any…

Michael Drdlíček
- 539
- 6
- 17
2
votes
1 answer
Compose stateless futures with side-effecting futures in Scala
While composing futures with a for-yield structure, some with side effects, some without, I introduced a race condition because a future depending on a side effect did not take the result of that side effecting future as an argument.
In short:…

Felix
- 8,385
- 10
- 40
- 59