diff --git a/Grid/qcd/action/pseudofermion/GeneralEvenOddRationalRatio.h b/Grid/qcd/action/pseudofermion/GeneralEvenOddRationalRatio.h index 2b08cf49..027f37b3 100644 --- a/Grid/qcd/action/pseudofermion/GeneralEvenOddRationalRatio.h +++ b/Grid/qcd/action/pseudofermion/GeneralEvenOddRationalRatio.h @@ -115,6 +115,54 @@ NAMESPACE_BEGIN(Grid); public: + // allow non-uniform tolerances + void SetTolerances(std::vector action_tolerance,std::vector md_tolerance) + { + assert(action_tolerance.size()==ApproxPowerAction.tolerances.size()); + assert( md_tolerance.size()==ApproxPowerMD.tolerances.size()); + + // Fix up the tolerances + for(int i=0;i &_NumOp, FermionOperator &_DenOp, const Params & p @@ -149,6 +197,11 @@ NAMESPACE_BEGIN(Grid); ApproxNegHalfPowerMD.tolerances[i] = ApproxHalfPowerMD.tolerances[i] = param.md_tolerance; } + std::vector action_tolerance(ApproxHalfPowerAction.tolerances.size(),param.action_tolerance); + std::vector md_tolerance (ApproxHalfPowerMD.tolerances.size(),param.md_tolerance); + + SetTolerances(action_tolerance, md_tolerance); + std::cout<