mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
aeb7442d8f
Allows multi-precision work and paves the way for alternate BC's and such like allowing for example G-parity which is important for K pipi programme. In particular, can drive an extra flavour index into the fermion fields using template types.
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#ifndef OVERLAP_WILSON_PARTFRAC_ZOLOTAREV_FERMION_H
|
|
#define OVERLAP_WILSON_PARTFRAC_ZOLOTAREV_FERMION_H
|
|
|
|
#include <Grid.h>
|
|
|
|
namespace Grid {
|
|
|
|
namespace QCD {
|
|
|
|
template<class Impl>
|
|
class OverlapWilsonPartialFractionZolotarevFermion : public PartialFractionFermion5D<Impl>
|
|
{
|
|
public:
|
|
#include <qcd/action/fermion/FermionImplTypedefs.h>
|
|
public:
|
|
|
|
virtual void Instantiatable(void){};
|
|
// Constructors
|
|
OverlapWilsonPartialFractionZolotarevFermion(GaugeField &_Umu,
|
|
GridCartesian &FiveDimGrid,
|
|
GridRedBlackCartesian &FiveDimRedBlackGrid,
|
|
GridCartesian &FourDimGrid,
|
|
GridRedBlackCartesian &FourDimRedBlackGrid,
|
|
RealD _mass,RealD _M5,
|
|
RealD lo,RealD hi):
|
|
|
|
// b+c=scale, b-c = 0 <=> b =c = scale/2
|
|
PartialFractionFermion5D<Impl>(_Umu,
|
|
FiveDimGrid,
|
|
FiveDimRedBlackGrid,
|
|
FourDimGrid,
|
|
FourDimRedBlackGrid,_mass,_M5)
|
|
{
|
|
assert((this->Ls&0x1)==1); // Odd Ls required
|
|
|
|
int nrational=this->Ls;// Odd rational order
|
|
RealD eps = lo/hi;
|
|
|
|
Approx::zolotarev_data *zdata = Approx::zolotarev(eps,nrational,0);
|
|
this->SetCoefficientsZolotarev(hi,zdata);
|
|
Approx::zolotarev_free(zdata);
|
|
|
|
}
|
|
};
|
|
}
|
|
}
|
|
#endif
|