wip
This commit is contained in:
parent
49f07cbb8e
commit
f4ce1dc8f6
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <ankerl/unordered_dense.h>
|
#include <ankerl/unordered_dense.h>
|
||||||
|
#include <boost/unordered_map.hpp>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
#include <map>
|
#include <map>
|
||||||
@ -68,7 +69,8 @@ template <typename NodeID, typename Key> class UnorderedMapStorage
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
#ifdef USE_ANKERL
|
#ifdef USE_ANKERL
|
||||||
ankerl::unordered_dense::segmented_map<NodeID, Key> nodes;
|
boost::unordered_map<NodeID, Key> nodes;
|
||||||
|
// ankerl::unordered_dense::segmented_map<NodeID, Key> nodes;
|
||||||
// ankerl::unordered_dense::map<NodeID, Key> nodes;
|
// ankerl::unordered_dense::map<NodeID, Key> nodes;
|
||||||
#else
|
#else
|
||||||
std::unordered_map<NodeID, Key> nodes;
|
std::unordered_map<NodeID, Key> nodes;
|
||||||
|
Loading…
Reference in New Issue
Block a user