From df2aac01f4e99cf4316cb3f800462b50449cbc33 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Tue, 21 Jul 2015 13:52:59 +0900 Subject: [PATCH] This was needed to compile on gcc --- lib/qcd/hmc/integrators/Integrator.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/qcd/hmc/integrators/Integrator.h b/lib/qcd/hmc/integrators/Integrator.h index 5eb319b2..90707d51 100644 --- a/lib/qcd/hmc/integrators/Integrator.h +++ b/lib/qcd/hmc/integrators/Integrator.h @@ -69,10 +69,10 @@ namespace Grid{ LatticeColourMatrix Umu(U._grid); LatticeColourMatrix Pmu(U._grid); for (int mu = 0; mu < Nd; mu++){ - Umu=peekLorentz(U, mu); - Pmu=peekLorentz(*P, mu); + Umu=PeekIndex(U, mu); + Pmu=PeekIndex(*P, mu); Umu = expMat(Pmu, ep, Params.Nexp)*Umu; - pokeLorentz(U, Umu, mu); + PokeIndex(U, Umu, mu); } }