Fix build

This commit is contained in:
Victor Shcherb 2015-04-14 15:44:43 +03:00
parent 7cd3560bf8
commit 53e708ccb1
9 changed files with 4 additions and 2 deletions

View file

@ -101,6 +101,8 @@ public class BinaryRoutePlanner {
if(TRACE_ROUTING){
printRoad(">", segment, !forwardSearch);
}
if(segment.getParentRoute() != null)
System.out.println(segment.getRoad().getId() + " - " + segment.getParentRoute().getRoad().getId());
if(segment instanceof FinalRouteSegment) {
if(RoutingContext.SHOW_GC_SIZE){
log.warn("Estimated overhead " + (ctx.memoryOverhead / (1<<20))+ " mb");
@ -312,8 +314,8 @@ public class BinaryRoutePlanner {
pr = "";
}
String p = "";
if(reverseWaySearch != null) {
p = (reverseWaySearch?"B" : "F");
if (reverseWaySearch != null) {
p = (reverseWaySearch ? "B" : "F");
}
println(p+prefix +"" + segment.road + " dir="+segment.getDirectionAssigned()+" ind=" + segment.getSegmentStart() +
" ds=" + ((float)segment.distanceFromStart) + " es="+((float)segment.distanceToEnd) + pr);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB