make default argument of virtual function Neighbor::build() explicit

This commit is contained in:
Axel Kohlmeyer
2018-02-22 08:42:36 -05:00
parent e1d1c87656
commit 99d5957a01
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);
}
}