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

fix HMC for non-fundamental representations

This commit is contained in:
Ed Bennett 2024-02-21 08:27:55 +00:00
parent 73c0b29535
commit 97f7a9ecb3

View File

@ -237,7 +237,7 @@ public:
for (int level = 0; level < as.size(); ++level) { for (int level = 0; level < as.size(); ++level) {
int multiplier = as.at(level).multiplier; int multiplier = as.at(level).multiplier;
ActionLevel<Field> * Level = new ActionLevel<Field>(multiplier); ActionLevel<Field, RepresentationPolicy> * Level = new ActionLevel<Field, RepresentationPolicy>(multiplier);
Level->push_back(new EmptyAction<Field>); Level->push_back(new EmptyAction<Field>);
LevelForces.push_back(*Level); LevelForces.push_back(*Level);
// does it copy by value or reference?? // does it copy by value or reference??