mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Don't fall prey to refactoring errors.
This commit is contained in:
parent
4e814fb0a5
commit
f1474e0b96
@ -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. */
|
/* Account for DSYRK only assigning upper triangular part. */
|
||||||
for (j = 0; j < nf; j++) {
|
for (j = 0; j < nf; j++) {
|
||||||
for (i = j + 1; i < nf; i++) {
|
for (i = j + 1; i < nf; i++) {
|
||||||
A[i + j*nf] = A[j + i*nf];
|
Binv[i + j*nf] = Binv[j + i*nf];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user