Home | History | Annotate | Download | only in Support

Lines Matching refs:EC

27   EC.reserve(N);
28 while (EC.size() < N)
29 EC.push_back(EC.size());
34 unsigned eca = EC[a];
35 unsigned ecb = EC[b];
41 EC[b] = eca, b = ecb, ecb = EC[b];
43 EC[a] = ecb, a = eca, eca = EC[a];
48 while (a != EC[a])
49 a = EC[a];
56 for (unsigned i = 0, e = EC.size(); i != e; ++i)
57 EC[i] = (EC[i] == i) ? NumClasses++ : EC[EC[i]];
64 for (unsigned i = 0, e = EC.size(); i != e; ++i)
65 if (EC[i] < Leader.size())
66 EC[i] = Leader[EC[i]];
68 Leader.push_back(EC[i] = i);