Changing how multi/cutoff works, changing collection indexing in user args

This commit is contained in:
Joel Clemmer
2021-05-04 17:12:17 -06:00
parent bd6dd658d6
commit fa386c0e96
12 changed files with 100 additions and 103 deletions

View File

@ -57,7 +57,10 @@ void NStencilFullMulti3d::create()
for (icollection = 0; icollection < n; icollection++) {
for (jcollection = 0; jcollection < n; jcollection++) {
if (flag_skip_multi[icollection][jcollection]) continue;
if (flag_skip_multi[icollection][jcollection]) {
nstencil_multi[icollection][jcollection] = 0;
continue;
}
ns = 0;