git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@8519 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -279,7 +279,8 @@ int Compute::molecules_in_group(int &idlo, int &idhi)
|
||||
|
||||
MPI_Allreduce(&flag,&flagall,1,MPI_INT,MPI_SUM,world);
|
||||
if (flagall && comm->me == 0)
|
||||
error->warning(FLERR,"One or more compute molecules has atoms not in group");
|
||||
error->warning(FLERR,
|
||||
"One or more compute molecules has atoms not in group");
|
||||
|
||||
// if molmap simply stores 1 to Nmolecules, then free it
|
||||
|
||||
|
||||
@ -63,7 +63,8 @@ void ComputeClusterAtom::init()
|
||||
if (force->pair == NULL)
|
||||
error->all(FLERR,"Compute cluster/atom requires a pair style be defined");
|
||||
if (sqrt(cutsq) > force->pair->cutforce)
|
||||
error->all(FLERR,"Compute cluster/atom cutoff is longer than pairwise cutoff");
|
||||
error->all(FLERR,
|
||||
"Compute cluster/atom cutoff is longer than pairwise cutoff");
|
||||
|
||||
// need an occasional full neighbor list
|
||||
// full required so that pair of atoms on 2 procs both set their clusterID
|
||||
|
||||
Reference in New Issue
Block a user