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:
parent
12a706e9b1
commit
3beb8f4091
@ -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++;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user