Lines Matching refs:allIdxs
25 std::stack<size_t> allIdxs;
26 allIdxs.emplace(idx);
28 while (pIdx != allIdxs.top()) {
29 allIdxs.emplace(pIdx);
33 while (!allIdxs.empty()) {
34 if (semiDom[minIdx[allIdxs.top()]] > semiDom[minIdx[pIdx]]) {
35 minIdx[allIdxs.top()] = minIdx[pIdx];
37 parent[allIdxs.top()] = unionFindSetRoot;
38 pIdx = allIdxs.top();
39 allIdxs.pop();