Skip to content
Snippets Groups Projects
Commit abecbfec authored by Rob Bisseling's avatar Rob Bisseling
Browse files

fixed harmless bug in test_AssignRemainingNonemptyColumns.c

parent 1577e587
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ int main(int argc, char **argv) {
No processor should own more than 1 component */
for (i=0; i<P; i++){
if (Ns[i] >= P || Nr[i] > (P+1)/2 || Nv[i] > 1 || Nv[i] != Nv[i] ){
if (Ns[i] >= P || Nr[i] > (P+1)/2 || Nv[i] > 1 || Nv[i] != Nv1[i] ){
printf("Error\n") ;
exit(1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment