2015-04-18 18:36:48 +01:00
|
|
|
#ifndef _GRID_CSHIFT_NONE_H_
|
|
|
|
#define _GRID_CSHIFT_NONE_H_
|
2015-04-18 20:44:19 +01:00
|
|
|
namespace Grid {
|
|
|
|
template<class vobj> Lattice<vobj> Cshift(Lattice<vobj> &rhs,int dimension,int shift)
|
2015-03-29 20:35:37 +01:00
|
|
|
{
|
|
|
|
Lattice<vobj> ret(rhs._grid);
|
|
|
|
ret.checkerboard = rhs._grid->CheckerBoardDestination(rhs.checkerboard,shift);
|
2015-04-03 04:52:53 +01:00
|
|
|
Cshift_local(ret,rhs,dimension,shift);
|
2015-04-10 04:53:09 +01:00
|
|
|
return ret;
|
2015-03-29 20:35:37 +01:00
|
|
|
}
|
2015-04-18 20:44:19 +01:00
|
|
|
}
|
2015-04-03 05:33:13 +01:00
|
|
|
#endif
|