1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-18 07:47:06 +01:00

Clover term force ok

This commit is contained in:
Guido Cossu
2017-10-29 11:43:33 +00:00
parent 76bcf6cd8c
commit f941c4ee18
4 changed files with 118 additions and 35 deletions

View File

@ -48,10 +48,7 @@ RealD WilsonCloverFermion<Impl>::M(const FermionField &in, FermionField &out)
// Clover term
Mooee(in, temp);
//hack
out = zero;
out= zero;
out += temp;
return norm2(out);
}
@ -68,9 +65,7 @@ RealD WilsonCloverFermion<Impl>::Mdag(const FermionField &in, FermionField &out)
// Clover term
MooeeDag(in, temp);
//hack
out = zero;
out=zero;
out += temp;
return norm2(out);
}