remove hash_map/hash_set; replace with std::unordered_map|set

This commit is contained in:
Laurent Perron
2017-04-27 14:14:05 +02:00
parent bb865b6667
commit 4db7d3bc4e
63 changed files with 219 additions and 631 deletions

View File

@@ -91,8 +91,8 @@ CostValue BuildAndSolveHungarianInstance(
hungarian_cost[tail][head] = cost;
}
}
hash_map<int, int> result;
hash_map<int, int> wish_this_could_be_null;
std::unordered_map<int, int> result;
std::unordered_map<int, int> wish_this_could_be_null;
WallTimer timer;
VLOG(1) << "Beginning Hungarian method.";
timer.Start();