1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

This is probably what you want ...

This commit is contained in:
Michael Marshall 2019-07-10 12:29:33 +01:00
parent cd659525e1
commit 7bc4a06f3f

View File

@ -62,7 +62,7 @@ public:
{ {
public: public:
GRID_SERIALIZABLE_CLASS_MEMBERS(Result, GRID_SERIALIZABLE_CLASS_MEMBERS(Result,
std::vector<std::vector<std::vector<Complex>>>, corr); std::vector<Complex>, corr);
}; };
public: public:
// constructor // constructor
@ -183,7 +183,7 @@ void TNucleon<FImpl1, FImpl2, FImpl3>::execute(void)
sliceSum(c,buf,Tp); sliceSum(c,buf,Tp);
for (unsigned int t = 0; t < buf.size(); ++t) for (unsigned int t = 0; t < buf.size(); ++t)
{ {
//result.corr[t] = TensorRemove(buf[t]); result.corr[t] = TensorRemove(buf[t]);
} }
saveResult(par().output, "baryon", result); saveResult(par().output, "baryon", result);