Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd95ce7f

Browse files
committed
Merge log lines
1 parentacccadb commitd95ce7f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

‎core/src/main/java/com/graphhopper/routing/ch/PrepareContractionHierarchies.java‎

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,9 @@ public boolean isPrepared() {
148148
}
149149

150150
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());
151+
logger.info("shortcut weights - under minimum: {}, over maximum: {}, minimum valid: {}, maximum valid: {}",
152+
Helper.nf(chStore.getNumShortcutsUnderMinWeight()),Helper.nf(chStore.getNumShortcutsOverMaxWeight()),
153+
chStore.getMinValidWeight(),chStore.getMaxValidWeight());
155154
logger.info("took: {}s, graph now - num edges: {}, num nodes: {}, num shortcuts: {}",
156155
(int)allSW.getSeconds(),nf(graph.getEdges()),nf(nodes),nf(chStore.getShortcuts()));
157156
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp