1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-13 04:37:05 +01:00

Wilson TM tests and compiles in

This commit is contained in:
paboyle
2015-12-17 23:06:33 +00:00
parent 6f0198d4d9
commit e108e708a3
7 changed files with 225 additions and 13 deletions

View File

@ -11,9 +11,8 @@ namespace Grid {
class WilsonTMFermion : public WilsonFermion<Impl>
{
public:
INHERIT_IMPL_TYPES(Impl);
INHERIT_IMPL_TYPES(Impl);
public:
RealD mu; // TwistedMass parameter
virtual void Instantiatable(void) {};
// Constructors
@ -33,15 +32,18 @@ namespace Grid {
mu = _mu;
}
};
// allow override for twisted mass and clover
virtual void Mooee(const FermionField &in, FermionField &out) ;
virtual void MooeeDag(const FermionField &in, FermionField &out) ;
virtual void MooeeInv(const FermionField &in, FermionField &out) ;
virtual void MooeeInvDag(const FermionField &in, FermionField &out) ;
}
}
private:
RealD mu; // TwistedMass parameter
};
}}
#endif