diff options
author | karroffel <therzog@mail.de> | 2018-05-03 14:40:55 +0200 |
---|---|---|
committer | karroffel <therzog@mail.de> | 2018-05-03 17:00:21 +0200 |
commit | bf24d570bb8be8695691d355913d470d37d59d43 (patch) | |
tree | 40e06986078e87904b25459cae8cb38f1f9a487e /main/tests | |
parent | 2e474f42b8183bc1f8255307f4c662a3cbc49135 (diff) |
updated OAHashMap to use robinhood hashing
Diffstat (limited to 'main/tests')
-rw-r--r-- | main/tests/test_oa_hash_map.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/tests/test_oa_hash_map.cpp b/main/tests/test_oa_hash_map.cpp index ac65fdf19c..0e34faace7 100644 --- a/main/tests/test_oa_hash_map.cpp +++ b/main/tests/test_oa_hash_map.cpp @@ -49,7 +49,7 @@ MainLoop *test() { map.set(42, 11880); int value; - map.lookup(42, &value); + map.lookup(42, value); OS::get_singleton()->print("capacity %d\n", map.get_capacity()); OS::get_singleton()->print("elements %d\n", map.get_num_elements()); @@ -72,7 +72,7 @@ MainLoop *test() { uint32_t num_elems = 0; for (int i = 0; i < 500; i++) { int tmp; - if (map.lookup(i, &tmp)) + if (map.lookup(i, tmp) && tmp == i * 2) num_elems++; } @@ -88,7 +88,7 @@ MainLoop *test() { map.set("Godot rocks", 42); for (OAHashMap<String, int>::Iterator it = map.iter(); it.valid; it = map.next_iter(it)) { - OS::get_singleton()->print("map[\"%s\"] = %d\n", it.key->utf8().get_data(), *it.data); + OS::get_singleton()->print("map[\"%s\"] = %d\n", it.key->utf8().get_data(), *it.value); } } |