remove reax/c aliases and related code checking for them

This commit is contained in:
Axel Kohlmeyer
2023-11-30 05:41:05 -05:00
parent a377f2a271
commit 6ff87f5c39
13 changed files with 17 additions and 21 deletions

View File

@ -54,6 +54,12 @@ FixDeprecated::FixDeprecated(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg,
} else if (my_style == "mscg") {
if (lmp->comm->me == 0)
utils::logmesg(lmp, "\nThe MSCG package has been removed from LAMMPS.\n\n");
} else if (utils::strmatch(my_style, "^reax/c/bonds")) {
if (lmp->comm->me == 0)
utils::logmesg(lmp, "\nFix style 'reax/c/bonds' has been renamed to 'reaxff/bonds'.\n\n");
} else if (utils::strmatch(my_style, "^reax/c/species")) {
if (lmp->comm->me == 0)
utils::logmesg(lmp, "\nFix style 'reax/c/species' has been renamed to 'reaxff/species'.\n\n");
}
error->all(FLERR, "This fix style is no longer available");
}