Skip to content

Commit d780dc7

Browse files
wip
1 parent 9712f2d commit d780dc7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

include/contractor/contractor_heap.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ using ContractorHeap = util::QueryHeap<NodeID,
2020
NodeID,
2121
EdgeWeight,
2222
ContractorHeapData,
23-
util::XORFastHashStorage<NodeID, NodeID>,
24-
false>;
23+
util::XORFastHashStorage<NodeID, NodeID>>;
2524

2625
} // namespace osrm::contractor
2726

include/customizer/cell_customizer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class CellCustomizer
2525

2626
public:
2727
using Heap =
28-
util::QueryHeap<NodeID, NodeID, EdgeWeight, HeapData, util::ArrayStorage<NodeID, int>>;
28+
util::QueryHeap<NodeID, NodeID, EdgeWeight, HeapData, util::ArrayStorage<NodeID, int>, false>;
2929
using HeapPtr = tbb::enumerable_thread_specific<Heap>;
3030

3131
CellCustomizer(const partitioner::MultiLevelPartition &partition) : partition(partition) {}

0 commit comments

Comments
 (0)