Age | Commit message (Collapse) | Author |
|
- Remove unnecessary include
- Improve whitespace
- Remove unnecessary variable declaration
- Move function call to more logical place
|
|
- Can iterate over vertices with for (int v = 0; v < number_vertices;
v++) loop
- This required internally remapping the vertices from their actual
names to 0, 1, ..., number_vertices - 1.
- Use Graph::get_real_vertex(vertex) to get original value
|
|
- Reorder includes
- Unify reference style
- Improve whitespace
|
|
|
|
A DependencyCalculator instance will, for each vertex in the given
graph, calculate the dependency on the given vertex.
|