--- trunk/src/brains/SimCreator.cpp 2005/03/02 15:36:14 392 +++ trunk/src/brains/SimCreator.cpp 2005/03/04 15:29:03 397 @@ -47,8 +47,6 @@ * @version 1.0 */ -#include - #include "brains/MoleculeCreator.hpp" #include "brains/SimCreator.hpp" #include "brains/SimSnapshotManager.hpp" @@ -57,7 +55,7 @@ #include "UseTheForce/ForceFieldFactory.hpp" #include "utils/simError.h" #include "utils/StringUtils.hpp" - +#include "math/SeqRandNumGen.hpp" #ifdef IS_MPI #include "io/mpiBASS.h" #include "math/ParallelRandNumGen.hpp" @@ -258,9 +256,9 @@ void SimCreator::divideMolecules(SimInfo *info) { SeqRandNumGen* myRandom; //divide labor does not need Parallel random number generator if (simParams->haveSeed()) { seedValue = simParams->getSeed(); - myRandom = new MTRand(seedValue); + myRandom = new SeqRandNumGen(seedValue); }else { - myRandom = new MTRand(); + myRandom = new SeqRandNumGen(); }