Questions tagged [dependency-graph]
50 questions
0
votes
1 answer
Dependency Graph using Dictionaries and Lists
I'm in the middle of working on a dependency graph, and I'm having trouble with properly adding my dependents and dependees.
I have it set up like:
private List> DG;
private Dictionary> dependants;
private…

Joey Weidman
- 373
- 2
- 4
- 9
0
votes
1 answer
How can I create a dependency graph from a text file?
Lets say I have a text file with the following data:
Form1 | L3 | depends on L4 and L5
Form1 | L4 | no dependence
Form1 | L5 | depends on L6
Form1 | L7 | no dependence
What I would like to do is output a directed graph (where direction means…

boldbrandywine
- 322
- 1
- 14
0
votes
0 answers
dojo module dependency(AMD) graph using build
would like to know how to create modular dependent graphs using dojo build system.added below lines in project main profile.js file.
…

angel
- 5
- 3
0
votes
4 answers
How to reduce compile time for large C++ library of individual .cpp files?
We're developing a C++ library with currently over 500 hundred individual .cpp files. These are each compiled and archived into a static library. Even with a parallel build, this takes some minutes. I'd like to reduce this compilation time.
Each…

Alec Jacobson
- 6,032
- 5
- 51
- 88
0
votes
1 answer
IAR Dependency graph
I'm using IAR Embedded Workbench for ARM Cortex-M3 programming. The library I have to use is huge and I need a dependency graph to understand some parts. Can IAR create it or give me a useful report from a compiled code?
Thanks
Behnam

Behnam
- 3
- 3