Don't fall prey to refactoring errors.

This commit is contained in:
Bård Skaflestad 2010-06-28 22:54:31 +00:00
parent 5441bc3efe
commit 08d53ece42

View File

@ -89,7 +89,7 @@ mim_ip_simple_fill_null(size_t nf, size_t d, double *C, double *A,
/* Account for DSYRK only assigning upper triangular part. */
for (j = 0; j < nf; j++) {
for (i = j + 1; i < nf; i++) {
A[i + j*nf] = A[j + i*nf];
Binv[i + j*nf] = Binv[j + i*nf];
}
}
}