Merge pull request #813 from akohlmey/correct-neighbor-build

Make default argument for virtual method Neighbor::build() explicit
This commit is contained in:
Steve Plimpton
2018-02-22 08:48:06 -07:00
committed by GitHub
14 changed files with 30 additions and 30 deletions

View File

@ -344,7 +344,7 @@ void VerletSplit::run(int n)
if (triclinic) domain->lamda2x(atom->nlocal+atom->nghost);
timer->stamp(Timer::COMM);
if (n_pre_neighbor) modify->pre_neighbor();
neighbor->build();
neighbor->build(1);
timer->stamp(Timer::NEIGH);
}
}