From 3cd5ef56fce701cdb9c972d16d32f632b1dd0dcd Mon Sep 17 00:00:00 2001 From: athomps Date: Thu, 6 Jan 2011 15:50:14 +0000 Subject: [PATCH] switched timestep variables from double to int git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5497 f3b2605a-c512-4ea7-a41b-209d697bcdaa --- src/REPLICA/tad.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/REPLICA/tad.cpp b/src/REPLICA/tad.cpp index c1d487ed1b..459b0707a8 100644 --- a/src/REPLICA/tad.cpp +++ b/src/REPLICA/tad.cpp @@ -1,6 +1,3 @@ -// To do: -// Mysterious problem with // if (universe->iworld == 0) - /* ---------------------------------------------------------------------- LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator http://lammps.sandia.gov, Sandia National Laboratories @@ -718,10 +715,10 @@ void TAD::perform_neb(int ievent) // Run NEB - double beginstep_hold = update->beginstep; - double endstep_hold = update->endstep; - double ntimestep_hold = update->ntimestep; - double nsteps_hold = update->nsteps; + int beginstep_hold = update->beginstep; + int endstep_hold = update->endstep; + int ntimestep_hold = update->ntimestep; + int nsteps_hold = update->nsteps; if (universe->me == 0) { universe->ulogfile = ulogfile_neb;