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

This commit is contained in:
sjplimp 2010-06-17 14:27:08 +00:00
parent 441180782e
commit 4ec563c51a
1 changed files with 1 additions and 7 deletions

View File

@ -450,7 +450,6 @@ void FixMSST::setup(int vflag)
// trigger virial computation on next timestep
pressure->addstep(update->ntimestep+1);
}
/* ----------------------------------------------------------------------
@ -679,8 +678,6 @@ void FixMSST::final_integrate()
// trigger virial computation on next timestep
pressure->addstep(update->ntimestep+1);
}
/* ---------------------------------------------------------------------- */
@ -760,8 +757,6 @@ void FixMSST::remap(int flag)
v[i][direction] = v[i][direction] *
dilation[direction];
}
}
/* ----------------------------------------------------------------------
@ -998,9 +993,8 @@ void FixMSST::check_alloc(int n)
delete [] old_velocity;
old_velocity = new double* [n];
for ( int j = 0; j < n; j++ ) {
for ( int j = 0; j < n; j++ )
old_velocity[j] = new double [3];
}
atoms_allocated = n;
}
}