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

This commit is contained in:
sjplimp
2016-07-06 15:52:15 +00:00
parent 85cb6786e0
commit 9da26677c5
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ NeighRequest::NeighRequest(LAMMPS *lmp) : Pointers(lmp)
occasional = 0; occasional = 0;
newton = 0; newton = 0;
special = 1; //special = 1;
dnum = 0; dnum = 0;
ghost = 0; ghost = 0;
omp = 0; omp = 0;
@ -127,7 +127,7 @@ int NeighRequest::identical(NeighRequest *other)
if (newton != other->newton) same = 0; if (newton != other->newton) same = 0;
if (occasional != other->occasional) same = 0; if (occasional != other->occasional) same = 0;
if (special != other->special) same = 0; //if (special != other->special) same = 0;
if (dnum != other->dnum) same = 0; if (dnum != other->dnum) same = 0;
if (ghost != other->ghost) same = 0; if (ghost != other->ghost) same = 0;
if (omp != other->omp) same = 0; if (omp != other->omp) same = 0;

View File

@ -65,7 +65,7 @@ class NeighRequest : protected Pointers {
// 0 if user of list wants no encoding of special bond flags and all neighs // 0 if user of list wants no encoding of special bond flags and all neighs
// 1 if user of list wants special bond flags encoded, set by default // 1 if user of list wants special bond flags encoded, set by default
int special; //int special;
// number of auxiliary floating point values to store, 0 if none // number of auxiliary floating point values to store, 0 if none
// set by requesting class // set by requesting class