mirror of https://github.com/lammps/lammps.git
fix stupid typo
This commit is contained in:
parent
42e8a7613e
commit
8b2a8ad08b
|
@ -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");
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
||||
|
|
Loading…
Reference in New Issue