switched timestep variables from double to int

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5497 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
athomps
2011-01-06 15:50:14 +00:00
parent 811d92021f
commit 3cd5ef56fc

View File

@ -1,6 +1,3 @@
// To do:
// Mysterious problem with // if (universe->iworld == 0)
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories http://lammps.sandia.gov, Sandia National Laboratories
@ -718,10 +715,10 @@ void TAD::perform_neb(int ievent)
// Run NEB // Run NEB
double beginstep_hold = update->beginstep; int beginstep_hold = update->beginstep;
double endstep_hold = update->endstep; int endstep_hold = update->endstep;
double ntimestep_hold = update->ntimestep; int ntimestep_hold = update->ntimestep;
double nsteps_hold = update->nsteps; int nsteps_hold = update->nsteps;
if (universe->me == 0) { if (universe->me == 0) {
universe->ulogfile = ulogfile_neb; universe->ulogfile = ulogfile_neb;