Home | History | Annotate | Download | only in ceres

Lines Matching refs:membership

48     HashMap<int, int>* membership) {
49 CHECK_NOTNULL(membership)->clear();
56 (*membership)[*it] = *it;
77 const int c1 = FindConnectedComponent(vertex1, membership);
78 const int c2 = FindConnectedComponent(vertex2, membership);
85 (*membership)[c2] = c1;
87 (*membership)[c1] = c2;
95 for (HashMap<int, int>::iterator it = membership->begin();
96 it != membership->end();
98 it->second = FindConnectedComponent(it->first, membership);