Skip to content
Snippets Groups Projects
Commit f1901237 authored by Steven J Plimpton's avatar Steven J Plimpton
Browse files

small changes to recent PR to standardize with other npair styles

parent 0cd86413
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,7 @@ void NPairHalffullNewtoff::build(NeighList *list) ...@@ -52,6 +52,7 @@ void NPairHalffullNewtoff::build(NeighList *list)
int inum_full = list->listfull->inum; int inum_full = list->listfull->inum;
if (list->ghost) inum_full += list->listfull->gnum; if (list->ghost) inum_full += list->listfull->gnum;
int inum = 0;
ipage->reset(); ipage->reset();
// loop over atoms in full list // loop over atoms in full list
...@@ -72,7 +73,7 @@ void NPairHalffullNewtoff::build(NeighList *list) ...@@ -72,7 +73,7 @@ void NPairHalffullNewtoff::build(NeighList *list)
if (j > i) neighptr[n++] = joriginal; if (j > i) neighptr[n++] = joriginal;
} }
ilist[ii] = i; ilist[inum++] = i;
firstneigh[i] = neighptr; firstneigh[i] = neighptr;
numneigh[i] = n; numneigh[i] = n;
ipage->vgot(n); ipage->vgot(n);
...@@ -80,6 +81,13 @@ void NPairHalffullNewtoff::build(NeighList *list) ...@@ -80,6 +81,13 @@ void NPairHalffullNewtoff::build(NeighList *list)
error->one(FLERR,"Neighbor list overflow, boost neigh_modify one"); error->one(FLERR,"Neighbor list overflow, boost neigh_modify one");
} }
list->inum = list->listfull->inum; list->inum = inum;
list->gnum = list->listfull->gnum; if (list->ghost) {
int num = 0;
for (i = 0; i < inum; i++)
if (ilist[i] < nlocal) num++;
else break;
list->inum = num;
list->gnum = inum - num;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment