From 40f2db9bc034e945950bb5303b80b823d4125c8e Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Sun, 21 Feb 2016 08:01:44 -0600 Subject: [PATCH] Disable metropolis step until 10 traj covered. Should move to exposing these in XML input and start having "applications" directory. --- lib/qcd/hmc/HmcRunner.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/qcd/hmc/HmcRunner.h b/lib/qcd/hmc/HmcRunner.h index 4d8bb2dd..a9178c74 100644 --- a/lib/qcd/hmc/HmcRunner.h +++ b/lib/qcd/hmc/HmcRunner.h @@ -103,27 +103,27 @@ public: if ( StartType == HotStart ) { // Hot start - HMCpar.NoMetropolisUntil =0; + HMCpar.NoMetropolisUntil =10; HMCpar.MetropolisTest = true; sRNG.SeedFixedIntegers(SerSeed); pRNG.SeedFixedIntegers(ParSeed); SU3::HotConfiguration(pRNG, U); } else if ( StartType == ColdStart ) { // Cold start - HMCpar.NoMetropolisUntil =0; + HMCpar.NoMetropolisUntil =10; HMCpar.MetropolisTest = true; sRNG.SeedFixedIntegers(SerSeed); pRNG.SeedFixedIntegers(ParSeed); SU3::ColdConfiguration(pRNG, U); } else if ( StartType == TepidStart ) { // Tepid start - HMCpar.NoMetropolisUntil =0; + HMCpar.NoMetropolisUntil =10; HMCpar.MetropolisTest = true; sRNG.SeedFixedIntegers(SerSeed); pRNG.SeedFixedIntegers(ParSeed); SU3::TepidConfiguration(pRNG, U); } else if ( StartType == CheckpointStart ) { - HMCpar.NoMetropolisUntil =0; + HMCpar.NoMetropolisUntil =10; HMCpar.MetropolisTest = true; // CheckpointRestart Checkpoint.CheckpointRestore(StartTraj, U, sRNG, pRNG);