mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
13 lines
319 B
C
13 lines
319 B
C
#ifndef _GRID_CSHIFT_NONE_H_
|
|
#define _GRID_CSHIFT_NONE_H_
|
|
|
|
friend 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
|