Browse Source

Correct performance log

Kajetan Johannes Hammerle 2 months ago
parent
commit
95513339fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      performance/Main.cpp

+ 1 - 1
performance/Main.cpp

@@ -90,7 +90,7 @@ static void chaos(int n) {
     Core::ProbingHashMap<int, int> m2;
     fillChaos(m);
     fillChaos(m2);
-    CORE_LOG_INFO("Order Chaining | Order Probing");
+    CORE_LOG_INFO("Chaos Chaining | Chaos Probing");
     CORE_LOG_INFO("Search | # ms | # ms", average(m, testSearch, n),
                   average(m2, testSearch, n));
     CORE_LOG_INFO("EmptySearch | # ms | # ms", average(m, testEmptySearch, n),