Search in sources :

Example 1 with IntFloatBinaryHeap

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);
}
Also used : IntFloatBinaryHeap(com.graphhopper.apache.commons.collections.IntFloatBinaryHeap) IntArrayList(com.carrotsearch.hppc.IntArrayList)

Aggregations

IntArrayList (com.carrotsearch.hppc.IntArrayList)1 IntFloatBinaryHeap (com.graphhopper.apache.commons.collections.IntFloatBinaryHeap)1