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

now it is possible to pass {coords list} to a peek or poke

This commit is contained in:
Francesco Sanfilippo
2017-02-20 22:49:06 +01:00
parent c94133af49
commit 15e668eef1
4 changed files with 5 additions and 5 deletions

View File

@ -49,7 +49,7 @@ public:
if( dim==_checker_dim) return 1;
else return 0;
}
virtual int CheckerBoard(std::vector<int> &site){
virtual int CheckerBoard(const std::vector<int> &site){
int linear=0;
assert(site.size()==_ndimension);
for(int d=0;d<_ndimension;d++){