modification to the base code for MPI-developement up to processor boundaries

This commit is contained in:
Hamidreza Norouzi
2024-04-27 09:03:19 -07:00
parent 5c65b92008
commit e7215159af
44 changed files with 646 additions and 477 deletions

View File

@ -33,6 +33,7 @@ private:
uint32 maxId_ = -1;
bool initialIdCheck()override;
public:
ClassInfo("particleIdHandler<regular>");
@ -50,7 +51,10 @@ public:
Pair<uint32, uint32> getIdRange(uint32 nNewParticles)override;
bool initialIdCheck()override;
uint32 maxId()const override
{
return maxId_;
}
};