Skip to content

Commit

Permalink
[FIXME] Comment Unusued correctCellVectors Hook
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l committed May 9, 2023
1 parent 45e458e commit 69215fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Src/Particle/AMReX_ParticleContainerI.H
Original file line number Diff line number Diff line change
Expand Up @@ -1650,7 +1650,7 @@ ParticleContainer_impl<ParticleType, NArrayReal, NArrayInt, Allocator>
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
for (int comp = 0; comp < NumIntComps(); comp++)
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
correctCellVectors(last, pindex, grid, aos[pindex]);
//correctCellVectors(last, pindex, grid, aos[pindex]); // FIXME: TODO
--last;
continue;
}
Expand All @@ -1664,7 +1664,7 @@ ParticleContainer_impl<ParticleType, NArrayReal, NArrayInt, Allocator>
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
for (int comp = 0; comp < NumIntComps(); comp++)
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
correctCellVectors(last, pindex, grid, aos[pindex]);
//correctCellVectors(last, pindex, grid, aos[pindex]); // FIXME: TODO
--last;
continue;
}
Expand Down Expand Up @@ -1716,7 +1716,7 @@ ParticleContainer_impl<ParticleType, NArrayReal, NArrayInt, Allocator>
soa.GetRealData(comp)[pindex] = soa.GetRealData(comp)[last];
for (int comp = 0; comp < NumIntComps(); comp++)
soa.GetIntData(comp)[pindex] = soa.GetIntData(comp)[last];
correctCellVectors(last, pindex, grid, aos[pindex]);
//correctCellVectors(last, pindex, grid, aos[pindex]); // FIXME: TODO
--last;
continue;
}
Expand Down

0 comments on commit 69215fc

Please sign in to comment.