1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-22 01:32:03 +01:00

Added ImportUnphysicalFermion and included appropriate logic for 5d w vectors in A2A code

This commit is contained in:
fionnoh
2018-07-21 00:08:11 +01:00
parent 94c7198001
commit c995788259
5 changed files with 31 additions and 7 deletions

View File

@ -162,13 +162,17 @@ namespace Grid {
{
imported = input;
};
virtual void ImportUnphysicalFermion(const FermionField &input,FermionField &imported)
{
imported=input;
};
virtual void ExportPhysicalFermionSolution(const FermionField &solution,FermionField &exported)
{
exported=solution;
};
virtual void ExportPhysicalFermionSource(const FermionField &solution, FermionField &exported)
virtual void ExportPhysicalFermionSource(const FermionField &solution,FermionField &exported)
{
exported = solution;
exported=solution;
};
};