mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-25 15:23:52 +00:00
[core] Switch to ankerl::unordered_dense
Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
This commit is contained in:
@@ -8,7 +8,8 @@
|
||||
#include "base/stl_helpers.hpp"
|
||||
|
||||
#include <deque>
|
||||
#include <unordered_map>
|
||||
|
||||
#include "3party/ankerl/unordered_dense.h"
|
||||
|
||||
namespace search
|
||||
{
|
||||
@@ -19,7 +20,7 @@ FeaturesLayerPathFinder::Mode FeaturesLayerPathFinder::m_mode = MODE_AUTO;
|
||||
|
||||
namespace
|
||||
{
|
||||
using ParentGraph = deque<unordered_map<uint32_t, uint32_t>>;
|
||||
using ParentGraph = deque<ankerl::unordered_dense::map<uint32_t, uint32_t>>;
|
||||
|
||||
// This function tries to estimate amount of work needed to perform an
|
||||
// intersection pass on a sequence of layers.
|
||||
|
||||
Reference in New Issue
Block a user