Skip to content

Commit 5315a9f

Browse files
committed
[FIXME] Comment Unusued correctCellVectors Hook
1 parent 41bf966 commit 5315a9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Src/Particle/AMReX_ParticleContainerI.H

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,7 @@ ParticleContainer_impl<ParticleType, NArrayReal, NArrayInt, Allocator>
16501650
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
16511651
for (int comp = 0; comp < NumIntComps(); comp++)
16521652
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
1653-
correctCellVectors(last, pindex, grid, aos[pindex]);
1653+
//correctCellVectors(last, pindex, grid, aos[pindex]); // FIXME: TODO
16541654
--last;
16551655
continue;
16561656
}
@@ -1664,7 +1664,7 @@ ParticleContainer_impl<ParticleType, NArrayReal, NArrayInt, Allocator>
16641664
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
16651665
for (int comp = 0; comp < NumIntComps(); comp++)
16661666
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
1667-
correctCellVectors(last, pindex, grid, aos[pindex]);
1667+
//correctCellVectors(last, pindex, grid, aos[pindex]); // FIXME: TODO
16681668
--last;
16691669
continue;
16701670
}
@@ -1716,7 +1716,7 @@ ParticleContainer_impl<ParticleType, NArrayReal, NArrayInt, Allocator>
17161716
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
17171717
for (int comp = 0; comp < NumIntComps(); comp++)
17181718
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
1719-
correctCellVectors(last, pindex, grid, aos[pindex]);
1719+
//correctCellVectors(last, pindex, grid, aos[pindex]); // FIXME: TODO
17201720
--last;
17211721
continue;
17221722
}

0 commit comments

Comments
 (0)