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);