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

This commit is contained in:
sjplimp
2011-04-11 15:26:40 +00:00
parent 218bb0f077
commit 05f10e15a2
2 changed files with 12 additions and 10 deletions

View File

@ -39,20 +39,16 @@ NeighRequest::NeighRequest(LAMMPS *lmp) : Pointers(lmp)
half_from_full = 0;
ghost = 0;
// default is use newton_pair setting in force
newton = 0;
// default is every reneighboring
occasional = 0;
// default is use newton_pair setting in force
// default is encode special bond flags
// default is no auxiliary floating point values
dnum = 0;
// default is no neighbors of ghosts
occasional = 0;
newton = 0;
special = 1;
dnum = 0;
ghost = 0;
// default is no copy or skip
@ -100,6 +96,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 (dnum != other->dnum) same = 0;
if (ghost != other->ghost) same = 0;