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

This commit is contained in:
sjplimp
2015-01-20 23:25:40 +00:00
parent 1833a9abc4
commit e59417b0f7
11 changed files with 26 additions and 15 deletions

View File

@ -408,7 +408,7 @@ void Update::create_minimize(int narg, char **arg)
void Update::reset_timestep(int narg, char **arg)
{
if (narg != 1) error->all(FLERR,"Illegal reset_timestep command");
bigint newstep = ATOBIGINT(arg[0]);
bigint newstep = force->bnumeric(FLERR,arg[0]);
reset_timestep(newstep);
}