This commit is contained in:
Siarhei Fedartsou 2024-07-06 12:43:21 +03:00
parent f62e917226
commit 5f166a5e4e

View File

@ -213,7 +213,8 @@ class QueryHeap
return weight > other.weight;
}
};
using HeapContainerAllocator = std::allocator<HeapData>; // boost::fast_pool_allocator<HeapData>;
using HeapContainerAllocator =
std::allocator<HeapData>; // boost::fast_pool_allocator<HeapData>;
using HeapContainer = boost::heap::d_ary_heap<HeapData,
boost::heap::arity<4>,
boost::heap::mutable_<true>,