mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
42f167ea37
a machine. If a "fixedSeed" is used, randoms should be reproducible across different machine decomposition since the generators are physically indexed and assigned in lexico ordering.
19 lines
416 B
C++
19 lines
416 B
C++
#ifndef GRID_LATTICE_CONFORMABLE_H
|
|
#define GRID_LATTICE_CONFORMABLE_H
|
|
|
|
namespace Grid {
|
|
|
|
template<class obj1,class obj2>
|
|
void conformable(const Lattice<obj1> &lhs,const Lattice<obj2> &rhs)
|
|
{
|
|
assert(lhs._grid == rhs._grid);
|
|
assert(lhs.checkerboard == rhs.checkerboard);
|
|
}
|
|
void inline conformable(const GridBase *lhs,GridBase *rhs)
|
|
{
|
|
assert(lhs == rhs);
|
|
}
|
|
|
|
}
|
|
#endif
|