1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

fixing typo, getting pre-changes physics

This commit is contained in:
Alessandro Lupo 2023-05-15 16:00:15 +01:00
parent 12a706e9b1
commit 3beb8f4091

View File

@ -89,10 +89,10 @@ class GaugeGroupTwoIndex : public GaugeGroup<ncolour, group_name> {
for (int i = 1; i < ncolour; i++) {
for (int j = 0; j < i; j++) {
a[counter][0] = i;
a[counter][1] =
i == ngroup ? j + 1
j = i == ngroup ? j + 1
: j; // this will only ever trigger for Sp because
// ngroup == ncolour is out of range for SU
a[counter][1] = j;
counter++;
}
}