Skip to content

Commit b001a6e

Browse files
committed
Merge branch 'master' of git+ssh://github.com/graphhopper/graphhopper
2 parents dc2953d + 6c469c7 commit b001a6e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

core/files/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
0.12
2+
moved shp-reader into separate repository: https://github.com/graphhopper/graphhopper-reader-shp
3+
14
0.11
25
web resources for dropwizard web framework (no servlets anymore)
36
prefix -Dgraphhopper. for command line arguments necessary, see docs/web/quickstart.md or docs/core/quickstart-from-source.md#running--debbuging-with-intellij for details
47
delegated reading properties to dropwizard, i.e. the new format yml is not read again in GraphHopper.init
8+
changed file format for landmarks #1376
9+
510
0.9
611
remove war bundling support #297
712
rename of DefaultModule to GraphHopperModule and GHServletModule to GraphHopperServletModule

reader-gtfs/src/main/java/com/graphhopper/reader/gtfs/MultiCriteriaLabelSetting.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ public MultiCriteriaLabelSetting(GraphExplorer explorer, PtFlagEncoder flagEncod
7474

7575
queueComparator = Comparator
7676
.comparingLong(this::weight)
77-
.thenComparingLong(l1 -> l1.nTransfers)
77+
.thenComparingLong(l -> l.nTransfers)
78+
.thenComparingLong(l -> l.walkTime)
7879
.thenComparingLong(l -> departureTimeCriterion(l) != null ? departureTimeCriterion(l) : 0)
79-
.thenComparingLong(l2 -> l2.impossible ? 1 : 0);
80+
.thenComparingLong(l -> l.impossible ? 1 : 0);
8081
fromHeap = new PriorityQueue<>(queueComparator);
8182
fromMap = new IntObjectHashMap<>();
8283
}

0 commit comments

Comments
 (0)