Fixing compilation mistake, updating dev reference

This commit is contained in:
jtclemm
2022-10-30 21:04:31 -06:00
parent 33c84963e9
commit 6544fbd248
8 changed files with 17 additions and 31 deletions

View File

@ -116,14 +116,14 @@ void NPairRespaBin<NEWTON, TRI>::build(NeighList *list)
for (k = 0; k < nstencil; k++) {
bin_start = binhead[ibin+stencil[k]];
if (stencil[k] == 0) {
if (HALF && NEWTON && (!TRI)) {
if (NEWTON && (!TRI)) {
// Half neighbor list, newton on, orthonormal
// loop over rest of atoms in i's bin, ghosts are at end of linked list
bin_start = bins[i];
}
}
for (j = binstart; j >= 0; j = bins[j]) {
for (j = bin_start; j >= 0; j = bins[j]) {
if (!NEWTON) {
// Half neighbor list, newton off
// only store pair if i < j