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

Build reorg with which I am a bit happier

This commit is contained in:
Peter Boyle
2015-04-18 21:22:50 +01:00
parent c94b7cc43c
commit e5a25dfcb1
41 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#ifndef _GRID_CSHIFT_NONE_H_
#define _GRID_CSHIFT_NONE_H_
namespace Grid {
template<class vobj> Lattice<vobj> Cshift(Lattice<vobj> &rhs,int dimension,int shift)
{
Lattice<vobj> ret(rhs._grid);
ret.checkerboard = rhs._grid->CheckerBoardDestination(rhs.checkerboard,shift);
Cshift_local(ret,rhs,dimension,shift);
return ret;
}
}
#endif