mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
55cfc89459
So valence sector looks ok. FermionOperatorImpl.h provides the policy classes. Expect HMC will introduce a smearing policy and a fermion representation change policy template param. Will also probably need multi-precision work. * HMC is running even-odd and non-checkerboarded (checked 4^4 wilson fermion/wilson gauge). There appears to be a bug in the multi-level integrator -- <e-dH> passes with single level but not with multi-level. In any case there looks to be quite a bit to clean up. This is the "const det" style implementation that is not appropriate yet for clover since it assumes that Mee is indept of the gauge fields. Easily fixed in future.
38 lines
885 B
C++
38 lines
885 B
C++
#ifndef OVERLAP_WILSON_CAYLEY_TANH_FERMION_H
|
|
#define OVERLAP_WILSON_CAYLEY_TANH_FERMION_H
|
|
|
|
#include <Grid.h>
|
|
|
|
namespace Grid {
|
|
|
|
namespace QCD {
|
|
|
|
template<class Impl>
|
|
class OverlapWilsonCayleyTanhFermion : public MobiusFermion<Impl>
|
|
{
|
|
public:
|
|
INHERIT_IMPL_TYPES(Impl);
|
|
public:
|
|
|
|
// Constructors
|
|
OverlapWilsonCayleyTanhFermion(GaugeField &_Umu,
|
|
GridCartesian &FiveDimGrid,
|
|
GridRedBlackCartesian &FiveDimRedBlackGrid,
|
|
GridCartesian &FourDimGrid,
|
|
GridRedBlackCartesian &FourDimRedBlackGrid,
|
|
RealD _mass,RealD _M5,
|
|
RealD scale,const ImplParams &p= ImplParams()) :
|
|
|
|
// b+c=scale, b-c = 0 <=> b =c = scale/2
|
|
MobiusFermion<Impl>(_Umu,
|
|
FiveDimGrid,
|
|
FiveDimRedBlackGrid,
|
|
FourDimGrid,
|
|
FourDimRedBlackGrid,_mass,_M5,0.5*scale,0.5*scale,p)
|
|
{
|
|
}
|
|
};
|
|
}
|
|
}
|
|
#endif
|