revert verlet.cpp change

This commit is contained in:
Sachith Dunatunga
2024-12-15 11:53:48 -08:00
parent e48f288e2b
commit 64c06e9673
2 changed files with 2 additions and 2 deletions

View File

@ -3643,7 +3643,7 @@ tagint Variable::int_between_brackets(char *&ptr, int varallow)
atan2(y,x),random(x,y,z),normal(x,y,z),ceil(),floor(),round(),ternary(), atan2(y,x),random(x,y,z),normal(x,y,z),ceil(),floor(),round(),ternary(),
ramp(x,y),stagger(x,y),logfreq(x,y,z),logfreq2(x,y,z), ramp(x,y),stagger(x,y),logfreq(x,y,z),logfreq2(x,y,z),
logfreq3(x,y,z),stride(x,y,z),stride2(x,y,z,a,b,c),vdisplace(x,y), logfreq3(x,y,z),stride(x,y,z),stride2(x,y,z,a,b,c),vdisplace(x,y),
swiggle(x,y,z),cwiggle(x,y,z) swiggle(x,y,z),cwiggle(x,y,z),sign(x)
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
int Variable::math_function(char *word, char *contents, Tree **tree, Tree **treestack, int Variable::math_function(char *word, char *contents, Tree **tree, Tree **treestack,

View File

@ -282,7 +282,7 @@ void Verlet::run(int n)
} }
timer->stamp(); timer->stamp();
comm->exchange(); comm->exchange();
//if (sortflag && ntimestep >= atom->nextsort) atom->sort(); if (sortflag && ntimestep >= atom->nextsort) atom->sort();
comm->borders(); comm->borders();
if (triclinic) domain->lamda2x(atom->nlocal+atom->nghost); if (triclinic) domain->lamda2x(atom->nlocal+atom->nghost);
timer->stamp(Timer::COMM); timer->stamp(Timer::COMM);