"vscode:/vscode.git/clone" did not exist on "23f413c297291e2c3676f4ecdd3a3634ed4ab7ed"
Commit 763644ec authored by rusty1s's avatar rusty1s
Browse files

bugfix

parent c60c456c
......@@ -42,7 +42,7 @@ __global__ void weightedResponseKernel(int64_t *color, int64_t *prop, int64_t *r
}
if (matchedValue >= 0) {
color[i] = min(i, matchedValue);
color[c] = min(i, matchedValue);
color[matchedValue] = min(i, matchedValue);
}
if (isDead) { color[i] = i; } // Mark node as dead.
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment