1
0
mirror of https://github.com/paboyle/Grid.git synced 2026-05-23 02:24:17 +01:00

Merge develop

This commit is contained in:
Peter Boyle
2019-07-16 11:59:56 +01:00
parent fa9cd50c5b
commit 08904f830e
164 changed files with 5901 additions and 228 deletions
+4 -5
View File
@@ -1,7 +1,6 @@
#pragma once
namespace Grid{
namespace QCD{
NAMESPACE_BEGIN(Grid);
template<class Field>
void HighBoundCheck(LinearOperatorBase<Field> &HermOp,
@@ -20,7 +19,7 @@ namespace Grid{
Field &GaussNoise,
MultiShiftFunction &PowerNegHalf)
{
GridBase *FermionGrid = GaussNoise._grid;
GridBase *FermionGrid = GaussNoise.Grid();
Field X(FermionGrid);
Field Y(FermionGrid);
@@ -49,5 +48,5 @@ namespace Grid{
assert( (std::sqrt(Nd/Nx)<tol) && " InverseSqrtBoundsCheck ");
}
}
}
NAMESPACE_END(Grid);