fix stupid typo

This commit is contained in:
Axel Kohlmeyer 2019-04-05 06:32:59 -04:00
parent 42e8a7613e
commit 8b2a8ad08b
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
2 changed files with 2 additions and 2 deletions

View File

@ -343,7 +343,7 @@ void PairReaxCOMP::init_style( )
if (force->newton_pair == 0)
error->all(FLERR,"Pair style reax/c/omp requires newton pair on");
if ((atom->map_max_tag > 99999999) && (comm->me == 0))
if ((atom->map_tag_max > 99999999) && (comm->me == 0))
error->warning(FLERR,"Some Atom-IDs are too large. Pair style reax/c/omp "
"native output files may get misformatted or corrupted");

View File

@ -382,7 +382,7 @@ void PairReaxC::init_style( )
error->all(FLERR,"Pair style reax/c requires atom IDs");
if (force->newton_pair == 0)
error->all(FLERR,"Pair style reax/c requires newton pair on");
if ((atom->map_max_tag > 99999999) && (comm->me == 0))
if ((atom->map_tag_max > 99999999) && (comm->me == 0))
error->warning(FLERR,"Some Atom-IDs are too large. Pair style reax/c "
"native output files may get misformatted or corrupted");