mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-18 09:45:55 +01:00
Hadrons: more fixes after test
This commit is contained in:
parent
591a38c487
commit
bcf6f3890c
@ -99,6 +99,8 @@ public:
|
|||||||
virtual std::vector<std::string> getOutput(void);
|
virtual std::vector<std::string> getOutput(void);
|
||||||
virtual void parseGammaString(std::vector<GammaPair> &gammaList);
|
virtual void parseGammaString(std::vector<GammaPair> &gammaList);
|
||||||
protected:
|
protected:
|
||||||
|
// execution
|
||||||
|
virtual void setup(void);
|
||||||
// execution
|
// execution
|
||||||
virtual void execute(void);
|
virtual void execute(void);
|
||||||
};
|
};
|
||||||
@ -161,6 +163,12 @@ void TMeson<FImpl1, FImpl2>::parseGammaString(std::vector<GammaPair> &gammaList)
|
|||||||
// Parse individual contractions from input string.
|
// Parse individual contractions from input string.
|
||||||
gammaList = strToVec<GammaPair>(par().gammas);
|
gammaList = strToVec<GammaPair>(par().gammas);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// execution ///////////////////////////////////////////////////////////////////
|
||||||
|
template <typename FImpl1, typename FImpl2>
|
||||||
|
void TMeson<FImpl1, FImpl2>::setup(void)
|
||||||
|
{
|
||||||
envTmpLat(LatticeComplex, "c");
|
envTmpLat(LatticeComplex, "c");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ public:
|
|||||||
{
|
{
|
||||||
Size size;
|
Size size;
|
||||||
Environment::Storage storage;
|
Environment::Storage storage;
|
||||||
unsigned int module;
|
int module;
|
||||||
};
|
};
|
||||||
struct MemoryProfile
|
struct MemoryProfile
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user