From 293bfe17d1162d2dc8ec7e2cbe24ff0954c95f37 Mon Sep 17 00:00:00 2001 From: ferben Date: Thu, 7 Nov 2019 14:00:40 +0000 Subject: [PATCH] added code to the noise module... --- Hadrons/Modules/MDistil/Noises.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Hadrons/Modules/MDistil/Noises.hpp b/Hadrons/Modules/MDistil/Noises.hpp index 463ec635..8b7d1f45 100644 --- a/Hadrons/Modules/MDistil/Noises.hpp +++ b/Hadrons/Modules/MDistil/Noises.hpp @@ -119,8 +119,6 @@ void TNoises::execute(void) UniqueIdentifier.append( std::to_string( vm().getTrajectory() ) ); // We use our own seeds so we can specify different noises per quark - GridSerialRNG sRNG; - sRNG.SeedUniqueString(UniqueIdentifier); Real rn; auto &noise = envGet(NoiseTensor, getName()); for (int inoise = 0; inoise < nnoise; inoise++) { @@ -130,7 +128,7 @@ void TNoises::execute(void) if (exact_distillation) noise(inoise, t, ivec, is) = 1.; else{ - random(sRNG,rn); + random(rngSerial(),rn); // We could use a greater number of complex roots of unity // ... but this seems to work well noise(inoise, t, ivec, is) = (rn > 0.5) ? -1 : 1;