mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-13 20:57:06 +01:00
4D Pseudofermion support
This commit is contained in:
@ -171,6 +171,16 @@ public:
|
||||
///////////////////////////////////////////////
|
||||
virtual void Dminus(const FermionField &psi, FermionField &chi) { chi=psi; }
|
||||
virtual void DminusDag(const FermionField &psi, FermionField &chi) { chi=psi; }
|
||||
|
||||
virtual void ImportFourDimPseudoFermion(const FermionField &input,FermionField &imported)
|
||||
{
|
||||
imported = input;
|
||||
};
|
||||
virtual void ExportFourDimPseudoFermion(const FermionField &solution,FermionField &exported)
|
||||
{
|
||||
exported=solution;
|
||||
};
|
||||
|
||||
virtual void ImportPhysicalFermionSource(const FermionField &input,FermionField &imported)
|
||||
{
|
||||
imported = input;
|
||||
|
Reference in New Issue
Block a user