add reax to DEPRECATED pair style and state when it was removed from LAMMPS

This commit is contained in:
Axel Kohlmeyer 2018-12-10 12:11:56 -05:00
parent 054c525842
commit a9c3b8aca0
2 changed files with 5 additions and 0 deletions

View File

@ -48,6 +48,10 @@ void PairDeprecated::settings(int, char **)
my_style = hybrid->keywords[hybrid->nstyles];
}
if (strcmp(my_style,"reax") == 0) {
writemsg(lmp,"\nPair style 'reax' has been removed from LAMMPS "
"after the 12 December 2018 version\n\n",1);
if (strcmp(my_style,"DEPRECATED") == 0) {
writemsg(lmp,"\nPair style 'DEPRECATED' is a dummy style\n\n",0);

View File

@ -14,6 +14,7 @@
#ifdef PAIR_CLASS
PairStyle(DEPRECATED,PairDeprecated)
PairStyle(reax,PairDeprecated)
#else