From 149f8266014394746dcac0cbf57799ce724eb968 Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Mon, 4 Jul 2016 16:09:19 +0100 Subject: [PATCH] Tested smearing for Nf2 WilsonFermionAction, non EO: accepts --- lib/qcd/action/pseudofermion/TwoFlavour.h | 2 +- tests/Test_hmc_EOWilsonFermionGauge.cc | 1 + tests/Test_hmc_WilsonFermionGauge.cc | 4 ++++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/qcd/action/pseudofermion/TwoFlavour.h b/lib/qcd/action/pseudofermion/TwoFlavour.h index 433cf294..21d23853 100644 --- a/lib/qcd/action/pseudofermion/TwoFlavour.h +++ b/lib/qcd/action/pseudofermion/TwoFlavour.h @@ -137,7 +137,7 @@ namespace Grid{ FermOp.MDeriv(tmp , Y, X,DaggerNo ); dSdU=tmp; FermOp.MDeriv(tmp , X, Y,DaggerYes); dSdU=dSdU+tmp; - dSdU = Ta(dSdU); + //dSdU = Ta(dSdU); }; diff --git a/tests/Test_hmc_EOWilsonFermionGauge.cc b/tests/Test_hmc_EOWilsonFermionGauge.cc index d9634666..6065884a 100644 --- a/tests/Test_hmc_EOWilsonFermionGauge.cc +++ b/tests/Test_hmc_EOWilsonFermionGauge.cc @@ -66,6 +66,7 @@ public: TwoFlavourEvenOddPseudoFermionAction Nf2(FermOp,CG,CG); + //Set smearing (true/false), default: false Nf2.is_smeared=true; //Collect actions diff --git a/tests/Test_hmc_WilsonFermionGauge.cc b/tests/Test_hmc_WilsonFermionGauge.cc index 21200a6a..a6fc7ae2 100644 --- a/tests/Test_hmc_WilsonFermionGauge.cc +++ b/tests/Test_hmc_WilsonFermionGauge.cc @@ -67,6 +67,10 @@ public: TwoFlavourPseudoFermionAction Nf2(FermOp,CG,CG); + //Set smearing (true/false), default: false + Nf2.is_smeared = true; + + //Collect actions ActionLevel Level1(1); Level1.push_back(&Nf2);