1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00
Grid/Grid_summation.h
Peter Boyle 1408a3c0f9 Got traceIndex, transposeIndex fully working.
Need to think about peekIndex interface and () based indexing.
2015-04-18 12:17:13 +01:00

13 lines
248 B
C++

#ifndef GRID_SUMMATION_H
#define GRID_SUMMATION_H
template<class vobj>
inline void sumBlocks(Lattice<vobj> &coarseData,const Lattice<vobj &fineData)
{
GridBase * fine = findData._grid;
GridBase * coarse= findData._grid;
return;
}
#endif