1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00

Got traceIndex, transposeIndex fully working.

Need to think about peekIndex interface and () based indexing.
This commit is contained in:
Peter Boyle 2015-04-18 12:17:13 +01:00
parent 23df6cf18e
commit 81367eaa12

12
Grid_summation.h Normal file
View File

@ -0,0 +1,12 @@
#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