1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Hadrons: precision fix

This commit is contained in:
Antonin Portelli 2018-08-09 00:13:53 +01:00
parent 6d2df9de79
commit dcdd891d7d

View File

@ -167,7 +167,7 @@ void TFreeProp<FImpl>::execute(void)
}
}
sol = zero;
std::vector<Real> twist = strToVec<Real>(par().twist);
std::vector<double> twist = strToVec<double>(par().twist);
if(twist.size() != Nd) HADRONS_ERROR(Size, "number of twist angles does not match number of dimensions");
mat.FreePropagator(source,sol,mass,twist);
FermToProp<FImpl>(prop, sol, s, c);