Check the MPI rank differently

This commit is contained in:
mkanski 2019-04-03 18:24:38 +02:00
parent f2f49e60bf
commit 1a105253c1
2 changed files with 2 additions and 3 deletions

View File

@ -431,7 +431,6 @@ void PairReaxC::setup( )
int *num_hbonds = fix_reax->num_hbonds;
control->vlist_cut = neighbor->cutneighmax;
control->me = comm->me;
// determine the local and total capacity

View File

@ -91,13 +91,13 @@ void Init_Taper( control_params *control, storage *workspace )
swa = control->nonb_low;
swb = control->nonb_cut;
if (fabs( swa ) > 0.01 && control->me == 0)
if (fabs( swa ) > 0.01 && control->my_rank == 0)
control->error_ptr->warning( FLERR, "Non-zero lower Taper-radius cutoff" );
if (swb < 0) {
control->error_ptr->all(FLERR,"Negative upper Taper-radius cutoff");
}
else if( swb < 5 && control->me == 0) {
else if( swb < 5 && control->my_rank == 0) {
char errmsg[256];
snprintf(errmsg, 256, "Very low Taper-radius cutoff: %f", swb );
control->error_ptr->warning( FLERR, errmsg );