This commit is contained in:
Siarhei Fedartsou 2024-07-06 12:40:57 +03:00
parent 611a3c250b
commit f62e917226

View File

@ -213,7 +213,7 @@ class QueryHeap
return weight > other.weight;
}
};
using HeapContainerAllocator = 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>,