Clarifying variable names

This commit is contained in:
Joel Clemmer
2020-12-20 15:15:19 -07:00
parent fee6df1ab6
commit bce37abe8f
8 changed files with 62 additions and 62 deletions

View File

@ -37,9 +37,9 @@ void NStencilFullMulti3d::set_stencil_properties()
for (i = 1; i <= n; i++) {
for (j = 1; j <= n; j++) {
stencil_half[i][j] = 0;
stencil_skip[i][j] = 0;
stencil_bin_type[i][j] = j;
flag_half_multi[i][j] = 0;
flag_skip_multi[i][j] = 0;
bin_type_multi[i][j] = j;
}
}
}
@ -57,7 +57,7 @@ void NStencilFullMulti3d::create()
for (itype = 1; itype <= n; itype++) {
for (jtype = 1; jtype <= n; jtype++) {
if (stencil_skip[itype][jtype]) continue;
if (flag_skip_multi[itype][jtype]) continue;
ns = 0;
@ -69,7 +69,7 @@ void NStencilFullMulti3d::create()
mbiny = stencil_mbiny_multi[itype][jtype];
mbinz = stencil_mbinz_multi[itype][jtype];
bin_type = stencil_bin_type[itype][jtype];
bin_type = bin_type_multi[itype][jtype];
cutsq = cutneighsq[itype][jtype];