Clarifying variable names
This commit is contained in:
@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user