mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-24 20:55:55 +01:00
4D Pseudofermion support
This commit is contained in:
parent
0765f30308
commit
fe00c96435
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user