bug fix for postProcess

This commit is contained in:
HRN
2024-11-22 21:33:46 +03:30
parent 75fba2710e
commit 5df18532b4
4 changed files with 8 additions and 11 deletions

View File

@ -101,7 +101,6 @@ public:
map_.build(points, activeMask);
auto iterator = map_.getCellIterator();
for(int32 i=0; i<mesh_.nx(); i++)
{
@ -111,8 +110,8 @@ public:
{
int32 res = 0;
int32 n = iterator.start(i,j,k);
while( n>-1)
uint32 n = iterator.start(i,j,k);
while( n!= cellMapper::NoPos)
{
res+=1;
n = iterator.getNext(n);