rephrase as requested by @sjplimp
This commit is contained in:
@ -233,8 +233,8 @@ void Dump::init()
|
|||||||
index = proclist = nullptr;
|
index = proclist = nullptr;
|
||||||
irregular = nullptr;
|
irregular = nullptr;
|
||||||
if ((has_id == 0) && (me == 0))
|
if ((has_id == 0) && (me == 0))
|
||||||
error->warning(FLERR,"Dump {} is without Atom-IDs and not sorted by id. This may lead to data "
|
error->warning(FLERR,"Dump {} includes no atom IDs and is not sorted by ID. This may complicate "
|
||||||
"changing order and prevent tracking individual atoms", id);
|
"post-processing tasks or visualization", id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sort_flag) {
|
if (sort_flag) {
|
||||||
@ -246,8 +246,8 @@ void Dump::init()
|
|||||||
if (sortcol && sortcol > size_one)
|
if (sortcol && sortcol > size_one)
|
||||||
error->all(FLERR,"Dump sort column is invalid");
|
error->all(FLERR,"Dump sort column is invalid");
|
||||||
if ((sortcol != 0) && (has_id == 0) && (me == 0))
|
if ((sortcol != 0) && (has_id == 0) && (me == 0))
|
||||||
error->warning(FLERR,"Dump {} is without Atom-IDs and not sorted by id. This may lead to data "
|
error->warning(FLERR,"Dump {} includes no atom IDs and is not sorted by ID. This may complicate "
|
||||||
"changing order and prevent tracking individual atoms", id);
|
"post-processing tasks or visualization", id);
|
||||||
if (nprocs > 1 && irregular == nullptr)
|
if (nprocs > 1 && irregular == nullptr)
|
||||||
irregular = new Irregular(lmp);
|
irregular = new Irregular(lmp);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user