diff --git a/kernel/utils.h b/kernel/utils.h index 31a8681f1..8fa223824 100644 --- a/kernel/utils.h +++ b/kernel/utils.h @@ -159,15 +159,12 @@ template , typename OPS = hash_ops> cla int node(T n) { - auto it = node_to_index.find(n); - if (it == node_to_index.end()) { - int index = static_cast(nodes.size()); - node_to_index[n] = index; - nodes.push_back(n); - edges.push_back(std::set(indirect_cmp)); - return index; + auto rv = node_to_index.emplace(n, static_cast(nodes.size())); + if (rv.second) { + nodes.push_back(n); + edges.push_back(std::set(indirect_cmp)); } - return it->second; + return rv.first->second; } void edge(int l_index, int r_index) { edges[r_index].insert(l_index); }