File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed
core/src/main/java/com/graphhopper/routing Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 18
18
package com .graphhopper .routing ;
19
19
20
20
import com .graphhopper .routing .AStar .AStarEntry ;
21
- import com .graphhopper .routing .util .FlagEncoder ;
22
21
import com .graphhopper .routing .util .TraversalMode ;
23
22
import com .graphhopper .routing .weighting .BeelineWeightApproximator ;
24
23
import com .graphhopper .routing .weighting .ConsistentWeightApproximator ;
Original file line number Diff line number Diff line change 17
17
*/
18
18
package com .graphhopper .routing ;
19
19
20
- import com .graphhopper .routing .util .FlagEncoder ;
21
20
import com .graphhopper .routing .util .TraversalMode ;
22
21
import com .graphhopper .routing .weighting .Weighting ;
23
22
import com .graphhopper .storage .Graph ;
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ protected void initCollections(int size) {
56
56
openSetFrom = new PriorityQueue <SPTEntry >(size );
57
57
bestWeightMapFrom = new TIntObjectHashMap <SPTEntry >(size );
58
58
59
- openSetTo = new PriorityQueue <SPTEntry >(size / 10 );
59
+ openSetTo = new PriorityQueue <SPTEntry >(size );
60
60
bestWeightMapTo = new TIntObjectHashMap <SPTEntry >(size );
61
61
}
62
62
You can’t perform that action at this time.
0 commit comments