mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
13 lines
342 B
C++
13 lines
342 B
C++
#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
|