Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanrossi committed Mar 1, 2013
1 parent 1e89bbc commit a2dce19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pmc_neigh_coloring.h
Expand Up @@ -108,7 +108,7 @@ namespace pmc {

while (k > k_prev) {
k_prev = k;
for (int i = 0; i < colors[k].size(); i++) { //use ind directly, no need to use Verts/edges
for (int i = 0; i < colors[k].size(); i++) { //use directly, sort makes it fast!
if (adj[u][colors[k][i]]) {
k++;
break;
Expand Down

0 comments on commit a2dce19

Please sign in to comment.