rename forward communication functions for pair, fix, compute, and dump
This commit is contained in:
@ -942,7 +942,7 @@ void FixBondReact::post_integrate()
|
||||
// forward comm of partner, so ghosts have it
|
||||
|
||||
commflag = 2;
|
||||
comm->forward_comm_fix(this,1);
|
||||
comm->forward_comm(this,1);
|
||||
|
||||
// consider for reaction:
|
||||
// only if both atoms list each other as winning bond partner
|
||||
@ -975,7 +975,7 @@ void FixBondReact::post_integrate()
|
||||
// communicate final partner
|
||||
|
||||
commflag = 3;
|
||||
comm->forward_comm_fix(this);
|
||||
comm->forward_comm(this);
|
||||
|
||||
// add instance to 'attempt' only if this processor
|
||||
// owns the atoms with smaller global ID
|
||||
@ -1028,7 +1028,7 @@ void FixBondReact::post_integrate()
|
||||
// evaluate custom constraint variable values here and forward_comm
|
||||
get_customvars();
|
||||
commflag = 1;
|
||||
comm->forward_comm_fix(this,ncustomvars);
|
||||
comm->forward_comm(this,ncustomvars);
|
||||
|
||||
// run through the superimpose algorithm
|
||||
// this checks if simulation topology matches unreacted mol template
|
||||
|
||||
Reference in New Issue
Block a user