git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@9206 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2013-01-03 17:17:45 +00:00
parent 0147edb8ea
commit da49b01f76
7 changed files with 22 additions and 2 deletions

View File

@ -112,6 +112,7 @@ void Verlet::setup()
comm->borders();
if (triclinic) domain->lamda2x(atom->nlocal+atom->nghost);
domain->box_too_small_check();
modify->setup_pre_neighbor();
neighbor->build();
neighbor->ncalls = 0;
@ -169,6 +170,7 @@ void Verlet::setup_minimal(int flag)
comm->borders();
if (triclinic) domain->lamda2x(atom->nlocal+atom->nghost);
domain->box_too_small_check();
modify->setup_pre_neighbor();
neighbor->build();
neighbor->ncalls = 0;
}