git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@11380 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2014-01-29 18:59:46 +00:00
parent fffe7f95b7
commit 9fe494cc6a
19 changed files with 48 additions and 291 deletions

View File

@ -473,7 +473,8 @@ void KSpace::modify_params(int narg, char **arg)
} else if (strcmp(arg[iarg],"eigtol") == 0) {
if (iarg+2 > narg) error->all(FLERR,"Illegal kspace_modify command");
splittol = atof(arg[iarg+1]);
if (splittol >= 1.0) error->all(FLERR,"eigtol must be smaller than one");
if (splittol >= 1.0)
error->all(FLERR,"Kspace_modify eigtol must be smaller than one");
iarg += 2;
} else error->all(FLERR,"Illegal kspace_modify command");
}