diff --git a/lib/qcd/action/pseudofermion/TwoFlavour.h b/lib/qcd/action/pseudofermion/TwoFlavour.h index 433cf2942..21d238534 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 d96346662..6065884a1 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 21200a6aa..a6fc7ae21 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);