diff --git a/lib/qcd/utils/CovariantCshift.h b/lib/qcd/utils/CovariantCshift.h index ed4e2d3f..ed96f3bf 100644 --- a/lib/qcd/utils/CovariantCshift.h +++ b/lib/qcd/utils/CovariantCshift.h @@ -95,13 +95,11 @@ namespace ConjugateBC { Lattice > coor(grid); LatticeCoordinate(coor,mu); - Lattice tmp1(grid); - Lattice tmp2(grid); + Lattice field_bc = Cshift(field,mu,1);// moves towards negative mu; - tmp1 = Cshift(field,mu,1);// moves towards negative mu; - tmp2 = where(coor==Lmu,conjugate(tmp1),tmp1); - - return Link*tmp2; + field_bc = where(coor==Lmu,conjugate(field_bc),field_bc); + // std::cout<<"Gparity::CovCshiftForward mu="< Lattice CovShiftBackward(const Lattice &Link, @@ -116,13 +114,12 @@ namespace ConjugateBC { Lattice > coor(grid); LatticeCoordinate(coor,mu); - Lattice tmp1(grid); - Lattice tmp2(grid); + Lattice tmp(grid); - tmp1 = adj(Link)*field; - tmp2 = where(coor==Lmu,conjugate(tmp1),tmp1); - - return Cshift(tmp2,mu,-1);// moves towards positive mu + tmp = adj(Link)*field; + tmp = where(coor==Lmu,conjugate(tmp),tmp); + // std::cout<<"Gparity::CovCshiftBackward mu="<