1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-13 04:37:05 +01:00

Few modifications on stdout messages

This commit is contained in:
Guido Cossu
2016-10-20 17:01:59 +01:00
parent 590675e2ca
commit 977d844394
6 changed files with 7 additions and 9 deletions

View File

@ -68,7 +68,7 @@ class HmcRunner : public NerscHmcRunner {
TwoFlavourPseudoFermionAction<ImplPolicy> Nf2(FermOp, CG, CG);
// Set smearing (true/false), default: false
Nf2.is_smeared = true;
Nf2.is_smeared = false;
// Collect actions
ActionLevel<LatticeGaugeField> Level1(1);

View File

@ -151,7 +151,7 @@ int main(int argc, char **argv) {
std::vector<int> ParSeed({6, 7, 8, 9, 10});
TheHMC.RNGSeeds(SerSeed, ParSeed);
TheHMC.MDparameters.set(20, 1.0);// MDsteps, traj length
TheHMC.MDparameters.set(5, 1.0);// MDsteps, traj length
TheHMC.BuildTheAction(argc, argv);
}

View File

@ -82,9 +82,9 @@ class HmcRunner : public BinaryHmcRunner {
std::vector<RealD> betat(Ls,5);
std::vector<RealD> betas(Ls);
betas={5,6,6,5};
std:cout << "Betas:" << betas << std::endl;
VariableWilsonGaugeActionR Waction(betas, betat, UGrid);
//WilsonGaugeActionR Waction(5.6);
//std:cout << "Betas:" << betas << std::endl;
//VariableWilsonGaugeActionR Waction(betas, betat, UGrid);
WilsonGaugeActionR Waction(5.6);
// Collect actions
ActionLevel<Field> Level1(1);