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

This commit is contained in:
sjplimp
2016-02-26 16:09:00 +00:00
parent fe00daa91b
commit 12d18e27cf
2 changed files with 8 additions and 3 deletions

View File

@ -45,9 +45,10 @@ using namespace LAMMPS_NS;
PairREAX::PairREAX(LAMMPS *lmp) : Pair(lmp)
{
error->warning(FLERR,"pair style reax is now deprecated "
"and will soon be retired. Users "
"should switch to pair_style reax/c");
if (comm->me == 0)
error->warning(FLERR,"The pair_style reax command will be deprecated "
"soon - users should switch to pair_style reax/c");
single_enable = 0;
restartinfo = 0;
one_coeff = 1;

View File

@ -63,6 +63,10 @@ using namespace LAMMPS_NS;
VerletCuda::VerletCuda(LAMMPS* lmp, int narg, char** arg) : Verlet(lmp, narg, arg)
{
if (comm->me == 0)
error->warning(FLERR,"The USER-CUDA pacakge will be deprecated "
"soon - users should switch to the GPU or KOKKOS packages");
cuda = lmp->cuda;
if(cuda == NULL)