Skip to content

Commit

Permalink
log time and number of vertices and edges explored
Browse files Browse the repository at this point in the history
  • Loading branch information
abyrd committed Feb 13, 2024
1 parent 67148f8 commit af450c4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/main/java/com/conveyal/r5/streets/StreetRouter.java
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,11 @@ public void route () {
} else if (flagSearch != null) {
routingVisitor = new VertexFlagVisitor(streetLayer, quantityToMinimize, flagSearch, flagSearchQuantity, profileRequest.getMinTimeSeconds(streetMode));
}
int nStatesHandled = 0;
int nEdgesTraversed[] = new int[1];
while (!queue.isEmpty()) {
State s0 = queue.poll();
nStatesHandled += 1;

if (DEBUG_OUTPUT) {
VertexStore.Vertex v = streetLayer.vertexStore.getCursor(s0.vertex);
Expand Down Expand Up @@ -566,7 +569,14 @@ public void route () {
// explore edges leaving this vertex
edgeList.forEach(eidx -> {
edge.seek(eidx);
if (s0.backState != null && s0.backState.vertex ==
(profileRequest.reverseSearch ? edge.getFromVertex() : edge.getToVertex())
) {
// Do not take edges that go straight back to where we came from.
return true;
}
State s1 = edge.traverse(s0, streetMode, profileRequest, timeCalculator);
nEdgesTraversed[0] += 1; // work around effectively final
if (s1 != null && s1.distance <= distanceLimitMm && s1.getDurationSeconds() < tmpTimeLimitSeconds) {
if (!isDominated(s1)) {
// Calculate the heuristic (which involves a square root) only when the state is retained.
Expand All @@ -582,7 +592,8 @@ public void route () {
debugPrintStream.close();
}
long routingTimeMsec = System.currentTimeMillis() - startTime;
LOG.debug("Routing took {} msec", routingTimeMsec);
LOG.info("Routing by {} took {} msec", this.streetMode, routingTimeMsec);
LOG.info("States handled {}, edges traversed {}, total edges {}", nStatesHandled, nEdgesTraversed[0], streetLayer.edgeStore.nEdges());
}

/**
Expand Down

0 comments on commit af450c4

Please sign in to comment.