We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentacccadb commitd95ce7fCopy full SHA for d95ce7f
core/src/main/java/com/graphhopper/routing/ch/PrepareContractionHierarchies.java
@@ -148,10 +148,9 @@ public boolean isPrepared() {
148
}
149
150
privatevoidlogFinalGraphStats() {
151
-logger.info("minimum valid shortcut weight: {}",chStore.getMinValidWeight());
152
-logger.info("maximum valid shortcut weight: {}",chStore.getMaxValidWeight());
153
-logger.info("shortcuts under minimum weight: {}",chStore.getNumShortcutsUnderMinWeight());
154
-logger.info("shortcuts over maximum weight: {}",chStore.getNumShortcutsOverMaxWeight());
+logger.info("shortcut weights - under minimum: {}, over maximum: {}, minimum valid: {}, maximum valid: {}",
+Helper.nf(chStore.getNumShortcutsUnderMinWeight()),Helper.nf(chStore.getNumShortcutsOverMaxWeight()),
+chStore.getMinValidWeight(),chStore.getMaxValidWeight());
155
logger.info("took: {}s, graph now - num edges: {}, num nodes: {}, num shortcuts: {}",
156
(int)allSW.getSeconds(),nf(graph.getEdges()),nf(nodes),nf(chStore.getShortcuts()));
157