Renamed MultiLevelHashSet/Map to FeldmanHashSet/Map
[libcds.git] / tests / unit / map2 / map_insdel_item_int.h
index fffbf8c4d0e09fcd33b9b479671a368392979b63..a4f01add69007ec8c361bcc2e4c35c10d5d68ca0 100644 (file)
@@ -22,8 +22,8 @@ namespace map2 {
         size_t c_nCuckooProbesetSize = 16;  // CuckooMap probeset size (only for list-based probeset)
         size_t c_nCuckooProbesetThreshold = 0; // CUckooMap probeset threshold (o - use default)
 
-        size_t c_nMultiLevelMap_HeadBits = 10;
-        size_t c_nMultiLevelMap_ArrayBits = 4;
+        size_t c_nFeldmanMap_HeadBits = 10;
+        size_t c_nFeldmanMap_ArrayBits = 4;
 
         size_t  c_nGoalItem;
         size_t  c_nLoadFactor = 2;  // current load factor
@@ -63,7 +63,7 @@ namespace map2 {
                         val = key;
                 }
 
-                // for MultiLevelHashMap
+                // for FeldmanHashMap
                 void operator()( std::pair<key_type const, value_type>& item, std::pair<key_type const, value_type> * pOld )
                 {
                     if ( !pOld )
@@ -276,8 +276,8 @@ namespace map2 {
         CDSUNIT_DECLARE_SkipListMap
         CDSUNIT_DECLARE_EllenBinTreeMap
         CDSUNIT_DECLARE_BronsonAVLTreeMap
-        CDSUNIT_DECLARE_MultiLevelHashMap_fixed
-        CDSUNIT_DECLARE_MultiLevelHashMap_city
+        CDSUNIT_DECLARE_FeldmanHashMap_fixed
+        CDSUNIT_DECLARE_FeldmanHashMap_city
         CDSUNIT_DECLARE_StripedMap
         CDSUNIT_DECLARE_RefinableMap
         CDSUNIT_DECLARE_CuckooMap
@@ -289,8 +289,8 @@ namespace map2 {
             CDSUNIT_TEST_SkipListMap
             CDSUNIT_TEST_EllenBinTreeMap
             CDSUNIT_TEST_BronsonAVLTreeMap
-            CDSUNIT_TEST_MultiLevelHashMap_fixed
-            CDSUNIT_TEST_MultiLevelHashMap_city
+            CDSUNIT_TEST_FeldmanHashMap_fixed
+            CDSUNIT_TEST_FeldmanHashMap_city
             CDSUNIT_TEST_CuckooMap
             CDSUNIT_TEST_StripedMap
             CDSUNIT_TEST_RefinableMap