rename forward communication functions for pair, fix, compute, and dump

This commit is contained in:
Axel Kohlmeyer
2022-02-21 21:15:10 -05:00
parent 7ea26161f7
commit 4c0192cae1
122 changed files with 266 additions and 266 deletions

View File

@ -131,14 +131,14 @@ void ComputeClusterAtom::compute_peratom()
if (update->post_integrate) {
commflag = COORDS;
comm->forward_comm_compute(this);
comm->forward_comm(this);
}
// if group is dynamic, insure ghost atom masks are current
if (group->dynamic[igroup]) {
commflag = MASK;
comm->forward_comm_compute(this);
comm->forward_comm(this);
}
// every atom starts in its own cluster, with clusterID = atomID
@ -165,7 +165,7 @@ void ComputeClusterAtom::compute_peratom()
int change,done,anychange;
while (true) {
comm->forward_comm_compute(this);
comm->forward_comm(this);
change = 0;
while (true) {