git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@15265 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -51,7 +51,7 @@ NeighRequest::NeighRequest(LAMMPS *lmp) : Pointers(lmp)
|
||||
|
||||
occasional = 0;
|
||||
newton = 0;
|
||||
special = 1;
|
||||
//special = 1;
|
||||
dnum = 0;
|
||||
ghost = 0;
|
||||
omp = 0;
|
||||
@ -127,7 +127,7 @@ int NeighRequest::identical(NeighRequest *other)
|
||||
|
||||
if (newton != other->newton) 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 (ghost != other->ghost) same = 0;
|
||||
if (omp != other->omp) same = 0;
|
||||
|
||||
@ -65,7 +65,7 @@ class NeighRequest : protected Pointers {
|
||||
// 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
|
||||
|
||||
int special;
|
||||
//int special;
|
||||
|
||||
// number of auxiliary floating point values to store, 0 if none
|
||||
// set by requesting class
|
||||
|
||||
Reference in New Issue
Block a user