| Package | Description |
|---|---|
| berack96.lib.graph.visit.impl |
| Modifier and Type | Method and Description |
|---|---|
int |
VisitInfo.VertexInfo.compareTo(VisitInfo.VertexInfo other) |
| Modifier and Type | Method and Description |
|---|---|
void |
VisitInfo.forEach(java.util.function.Consumer<VisitInfo.VertexInfo> consumer)
Iterate through all the vertices discovered and visited with the correct timeline.
The vertices will be visited in the order that they are discovered and visited, so a vertex can appear two times (one for the discovery, anc the other for the visit) |
void |
VisitInfo.forEachDiscovered(java.util.function.Consumer<VisitInfo.VertexInfo> consumer)
Iterate through all the vertices that are discovered.
The vertices will be ordered by the time of their discover. |
void |
VisitInfo.forEachVisited(java.util.function.Consumer<VisitInfo.VertexInfo> consumer)
Iterate through all the vertices that are visited.
The vertices will be ordered by the time of their visit. |