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

This commit is contained in:
sjplimp
2014-06-10 17:37:48 +00:00
parent fcb81d2b48
commit d37745fa1b
2 changed files with 6 additions and 2 deletions

View File

@ -98,7 +98,10 @@ int NeighRequest::identical(NeighRequest *other)
{
int same = 1;
if (unprocessed) same = 0;
// set same = 0 if old list was never processed
if (other->unprocessed) same = 0;
if (requestor != other->requestor) same = 0;
if (id != other->id) same = 0;