meam/c is no longer an alias for meam

This commit is contained in:
Axel Kohlmeyer
2024-04-28 08:43:24 -04:00
parent a85b0603a2
commit e34aa0d02b
4 changed files with 4 additions and 4 deletions

View File

@ -13,9 +13,6 @@
#ifdef PAIR_CLASS
// clang-format off
PairStyle(meam/c/kk,PairMEAMKokkos<LMPDeviceType>);
PairStyle(meam/c/kk/device,PairMEAMKokkos<LMPDeviceType>);
PairStyle(meam/c/kk/host,PairMEAMKokkos<LMPHostType>);
PairStyle(meam/kk,PairMEAMKokkos<LMPDeviceType>);
PairStyle(meam/kk/device,PairMEAMKokkos<LMPDeviceType>);
PairStyle(meam/kk/host,PairMEAMKokkos<LMPHostType>);

View File

@ -14,7 +14,6 @@
#ifdef PAIR_CLASS
// clang-format off
PairStyle(meam,PairMEAM);
PairStyle(meam/c,PairMEAM);
// clang-format on
#else

View File

@ -56,6 +56,9 @@ void PairDeprecated::settings(int, char **)
utils::logmesg(lmp,
"\nPair style 'mesont/tpm' has been removed from LAMMPS. "
"Please use pair style 'mesocnt' instead\n\n");
} else if (utils::strmatch(my_style, "^meam/c")) {
if (lmp->comm->me == 0)
utils::logmesg(lmp, "\nPair style 'meam/c' has been renamed to 'meam'\n\n");
}
error->all(FLERR, "This pair style is no longer available");
}

View File

@ -14,6 +14,7 @@
#ifdef PAIR_CLASS
// clang-format off
PairStyle(DEPRECATED,PairDeprecated);
PairStyle(meam/c,PairDeprecated);
PairStyle(reax,PairDeprecated);
PairStyle(reax/c,PairDeprecated);
PairStyle(mesont/tpm,PairDeprecated);