Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SiarheiFedartsou committed Jul 10, 2024
1 parent 9712f2d commit d780dc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions include/contractor/contractor_heap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ using ContractorHeap = util::QueryHeap<NodeID,
NodeID,
EdgeWeight,
ContractorHeapData,
util::XORFastHashStorage<NodeID, NodeID>,
false>;
util::XORFastHashStorage<NodeID, NodeID>>;

} // namespace osrm::contractor

Expand Down
2 changes: 1 addition & 1 deletion include/customizer/cell_customizer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class CellCustomizer

public:
using Heap =
util::QueryHeap<NodeID, NodeID, EdgeWeight, HeapData, util::ArrayStorage<NodeID, int>>;
util::QueryHeap<NodeID, NodeID, EdgeWeight, HeapData, util::ArrayStorage<NodeID, int>, false>;
using HeapPtr = tbb::enumerable_thread_specific<Heap>;

CellCustomizer(const partitioner::MultiLevelPartition &partition) : partition(partition) {}
Expand Down

0 comments on commit d780dc7

Please sign in to comment.