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

Hadrons: MQuark fix

This commit is contained in:
Antonin Portelli 2016-05-12 12:02:15 +01:00
parent 362f255100
commit 3d75e0f0d1

View File

@ -75,7 +75,7 @@ void MQuark::execute(void)
LOG(Message) << "Computing quark propagator '" << getName() << "'"
<< std::endl;
LatticePropagator &prop = *env().create<LatticePropagator>(propName);
LatticePropagator &fullSrc = *env().create<LatticePropagator>(par().source);
LatticePropagator &fullSrc = *env().get<LatticePropagator>(par().source);
LOG(Message) << "Inverting using solver '" << par().solver
<< "' on source '" << par().source << "'" << std::endl;
@ -121,6 +121,6 @@ void MQuark::execute(void)
{
LatticePropagator &prop4d = *env().create<LatticePropagator>(getName());
HADRON_ERROR("5D implementation not finished");
}
}