Searched refs:union_find (Results 1 – 1 of 1) sorted by relevance
244 HashMap<Vertex, Vertex>* union_find) { in FindConnectedComponent() argument245 typename HashMap<Vertex, Vertex>::iterator it = union_find->find(vertex); in FindConnectedComponent()246 DCHECK(it != union_find->end()); in FindConnectedComponent()248 it->second = FindConnectedComponent(it->second, union_find); in FindConnectedComponent()