remove check that is no longer needed

This commit is contained in:
Axel Kohlmeyer
2021-12-09 18:08:43 -05:00
parent facb49fc27
commit 146c6fe5ff
7 changed files with 0 additions and 21 deletions

View File

@ -542,11 +542,8 @@ void FixAveChunk::end_of_step()
int i,j,m,n,index;
// skip if not step which requires doing something
// error check if timestep was reset in an invalid manner
bigint ntimestep = update->ntimestep;
if (ntimestep < nvalid_last || ntimestep > nvalid)
error->all(FLERR,"Invalid timestep reset for fix ave/chunk");
if (ntimestep != nvalid) return;
nvalid_last = nvalid;