use of com.graphhopper.apache.commons.collections.IntFloatBinaryHeap in project graphhopper by graphhopper.
the class EdgeBasedWitnessPathSearcher method initCollections.
private void initCollections() {
changedEdges = new IntArrayList(1000);
dijkstraHeap = new IntFloatBinaryHeap(1000);
}
Aggregations