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