From 97f7a9ecb3cd8882b153fa4b138b8ac78892da25 Mon Sep 17 00:00:00 2001 From: Ed Bennett Date: Wed, 21 Feb 2024 08:27:55 +0000 Subject: [PATCH] fix HMC for non-fundamental representations --- Grid/qcd/hmc/integrators/Integrator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grid/qcd/hmc/integrators/Integrator.h b/Grid/qcd/hmc/integrators/Integrator.h index 385ff986..0276b6fd 100644 --- a/Grid/qcd/hmc/integrators/Integrator.h +++ b/Grid/qcd/hmc/integrators/Integrator.h @@ -237,7 +237,7 @@ public: for (int level = 0; level < as.size(); ++level) { int multiplier = as.at(level).multiplier; - ActionLevel * Level = new ActionLevel(multiplier); + ActionLevel * Level = new ActionLevel(multiplier); Level->push_back(new EmptyAction); LevelForces.push_back(*Level); // does it copy by value or reference??