mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Debugged last commit for the Two index representation
This commit is contained in:
parent
6ffadca153
commit
510e340e16
@ -81,8 +81,9 @@ class SU_TwoIndex : public SU<ncolour> {
|
||||
int counter = 0;
|
||||
for (int i = 1; i < ncolour; i++) {
|
||||
for (int j = 0; j < i; j++) {
|
||||
a[counter++][0] = i;
|
||||
a[counter++][1] = j;
|
||||
a[counter][0] = i;
|
||||
a[counter][1] = j;
|
||||
counter++;
|
||||
}
|
||||
}
|
||||
filled = true;
|
||||
|
@ -406,7 +406,7 @@ int main(int argc, char** argv) {
|
||||
|
||||
|
||||
|
||||
if (SU2TwoIndexAntiSymm::Dimension != 1){
|
||||
if (TwoIndexRep<Nc, AntiSymmetric >::Dimension != 1){
|
||||
|
||||
std::cout << GridLogMessage << "*********************************************"
|
||||
<< std::endl;
|
||||
|
Loading…
x
Reference in New Issue
Block a user