Dependency graph

From HandWiki
Short description: Directed graph representing dependencies

In mathematics, computer science and digital electronics, a dependency graph is a directed graph representing dependencies of several objects towards each other. It is possible to derive an evaluation order or the absence of an evaluation order that respects the given dependencies from the dependency graph.

Definition

A depends on B and C; B depends on D

Given a set of objects [math]\displaystyle{ S }[/math] and a transitive relation [math]\displaystyle{ R \subseteq S \times S }[/math] with [math]\displaystyle{ (a,b) \in R }[/math] modeling a dependency "a depends on b" ("a needs b evaluated first"), the dependency graph is a graph [math]\displaystyle{ G = (S, T) }[/math] with [math]\displaystyle{ T \subseteq R }[/math] the transitive reduction of R.

For example, assume a simple calculator. This calculator supports assignment of constant values to variables and assigning the sum of exactly two variables to a third variable. Given several equations like "A = B+C; B = 5+D; C=4; D=2;", then[math]\displaystyle{ S=\{A,B,C,D\} }[/math] and [math]\displaystyle{ R=\{(A,B),(A,C),(B,D)\} }[/math]. You can derive this relation directly: A depends on B and C, because you can add two variables if and only if you know the values of both variables. Thus, B must be calculated before A can be calculated. However, the values of C and D are known immediately, because they are number literals.

Recognizing impossible evaluations

In a dependency graph, the cycles of dependencies (also called circular dependencies) lead to a situation in which no valid evaluation order exists, because none of the objects in the cycle may be evaluated first. If a dependency graph does not have any circular dependencies, it forms a directed acyclic graph, and an evaluation order may be found by topological sorting. Most topological sorting algorithms are also capable of detecting cycles in their inputs; however, it may be desirable to perform cycle detection separately from topological sorting in order to provide appropriate handling for the detected cycles.

Assume the simple calculator from before. The equation system "A=B; B=D+C; C=D+A; D=12;" contains a circular dependency formed by A, B and C, as B must be evaluated before A, C must be evaluated before B, and A must be evaluated before C.

Deriving an evaluation order

A correct evaluation order is a numbering [math]\displaystyle{ n : S \rightarrow \mathbb{N} }[/math] of the objects that form the nodes of the dependency graph so that the following equation holds: [math]\displaystyle{ n(a) \lt n(b) \Rightarrow (a, b) \notin R }[/math] with [math]\displaystyle{ a, b \in S }[/math]. This means, if the numbering orders two elements [math]\displaystyle{ a }[/math] and [math]\displaystyle{ b }[/math] so that [math]\displaystyle{ a }[/math] will be evaluated before [math]\displaystyle{ b }[/math], then [math]\displaystyle{ a }[/math] must not depend on [math]\displaystyle{ b }[/math].

There can be more than one correct evaluation order. In fact, a correct numbering is a topological order, and any topological order is a correct numbering. Thus, any algorithm that derives a correct topological order derives a correct evaluation order.

Assume the simple calculator from above once more. Given the equation system "A = B+C; B = 5+D; C=4; D=2;", a correct evaluation order would be (D, C, B, A). However, (C, D, B, A) is a correct evaluation order as well.

Monoid structure

An acyclic dependency graph corresponds to a trace of a trace monoid as follows:[1]:12

  • A function [math]\displaystyle{ \phi : S \to \Sigma }[/math] labels each vertex with a symbol from the alphabet [math]\displaystyle{ \Sigma }[/math]
  • There is an edge [math]\displaystyle{ a \to b }[/math] or [math]\displaystyle{ b \to a }[/math] if and only if [math]\displaystyle{ (\phi(a),\phi(b)) }[/math] is in the dependency relation [math]\displaystyle{ D }[/math].
  • Two graphs are considered to be equal if their labels and edges correspond.

Then the string consisting of the vertex labels ordered by a correct evaluation order corresponds to a string of a trace.

The monoidal operation [math]\displaystyle{ (S_{12},R_{12})=(S_1,R_1)\bullet (S_2,R_2) }[/math] takes the disjoint union [math]\displaystyle{ S_{12}=S_1 \sqcup S_2 }[/math] of two graphs' vertex sets, preserves the existing edges in each graph, and draws new edges from the first to the second where the dependency relation allows,[1]:14

[math]\displaystyle{ R_{12} = R_1 \sqcup R_2 \sqcup \{(a,b)\mid a\in S_1 \land b\in S_2 \land (\phi(a),\phi(b))\in D\} }[/math]

The identity is the empty graph.

Examples

Dependency graphs are used in:

  • Automated software installers: They walk the graph looking for software packages that are required but not yet installed. The dependency is given by the coupling of the packages.
  • Software build scripts such as Unix Make, Node npm install, php composer, Twitter bower install, or Apache Ant. They need to know what files have changed so only the correct files need to be recompiled.
  • In compiler technology and formal language implementation:
    • Instruction scheduling: Dependency graphs are computed for the operands of assembly or intermediate instructions and used to determine an optimal order for the instructions.
    • Dead code elimination: If no side effected operation depends on a variable, this variable is considered dead and can be removed.
  • Dynamic graph analytics: GraphBolt[2] and KickStarter[3] capture value dependencies for incremental computing when graph structure changes.
  • Spreadsheet calculators. They need to derive a correct calculation order similar to that one in the example used in this article.
  • Web Forms standards such as XForms to know what visual elements to update if data in the model changes.
  • Video games, especially puzzle and adventure video games, which are frequently designed as a graph of dependent relationships between in-game actions.[4]

Dependency graphs are one aspect of:

  • Manufacturing plant types: Raw materials are processed into products via several dependent stages.
  • Job shop scheduling: A collection of related theoretical problems in computer science.

See also

References

  1. 1.0 1.1 Mazurkiewicz, Antoni (1995). "Introduction to Trace Theory". in Rozenberg, G.; Diekert, V.. The Book of Traces. Singapore: World Scientific. ISBN 981-02-2058-8. http://www.cas.mcmaster.ca/~cas724/2007/paper2.pdf. Retrieved 18 April 2021. 
  2. Mugilan Mariappan; Keval Vora (2019). "GraphBolt: Dependency-Driven Synchronous Processing of Streaming Graphs". pp. 25:1–25:16. doi:10.1145/3302424.3303974. 
  3. Keval Vora; Rajiv Gupta; Guoqing Xu (2017). "KickStarter: Fast and Accurate Computations on Streaming Graphs via Trimmed Approximations". pp. 237–251. doi:10.1145/3093337.3037748. 
  4. Gilbert, Ron. "Puzzle Dependency Charts" (in en). https://grumpygamer.com/puzzle_dependency_charts.