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

This commit is contained in:
sjplimp
2009-11-10 18:24:01 +00:00
parent a64de5f5d0
commit 3f3f82d909
19 changed files with 1110 additions and 1060 deletions

View File

@ -115,7 +115,7 @@ void Verlet::setup()
force->kspace->compute(eflag,vflag);
}
if (force->newton) comm->reverse_communicate();
if (force->newton) comm->reverse_comm();
modify->setup(vflag);
output->setup(1);
@ -165,7 +165,7 @@ void Verlet::setup_minimal(int flag)
force->kspace->compute(eflag,vflag);
}
if (force->newton) comm->reverse_communicate();
if (force->newton) comm->reverse_comm();
modify->setup(vflag);
}
@ -201,7 +201,7 @@ void Verlet::run(int n)
if (nflag == 0) {
timer->stamp();
comm->communicate();
comm->forward_comm();
timer->stamp(TIME_COMM);
} else {
if (n_pre_exchange) modify->pre_exchange();
@ -250,7 +250,7 @@ void Verlet::run(int n)
// reverse communication of forces
if (force->newton) {
comm->reverse_communicate();
comm->reverse_comm();
timer->stamp(TIME_COMM);
}