correct typo (missing increment operator) in fix bond/react

This commit is contained in:
Axel Kohlmeyer
2018-12-29 16:31:44 -05:00
parent 01163c9ae8
commit 6e866f82a7

View File

@ -2560,7 +2560,7 @@ void FixBondReact::update_everything()
else {
for (int j = 0; j < atom->num_improper[i]; j++) {
int m = atom->map(atom->improper_atom2[i][j]);
if (m >= 0 && m < nlocal) delta_imprp;
if (m >= 0 && m < nlocal) delta_imprp++;
}
}
}