From 510e340e16e67ff6143967367d266cdae901ea64 Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Thu, 22 Sep 2016 22:16:21 +0100 Subject: [PATCH] Debugged last commit for the Two index representation --- lib/qcd/utils/SUnTwoIndex.h | 5 +++-- tests/core/Test_lie_generators.cc | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/qcd/utils/SUnTwoIndex.h b/lib/qcd/utils/SUnTwoIndex.h index 44d756a7..0c09f5e2 100644 --- a/lib/qcd/utils/SUnTwoIndex.h +++ b/lib/qcd/utils/SUnTwoIndex.h @@ -81,8 +81,9 @@ class SU_TwoIndex : public SU { 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; diff --git a/tests/core/Test_lie_generators.cc b/tests/core/Test_lie_generators.cc index 28c66a28..5623b74b 100644 --- a/tests/core/Test_lie_generators.cc +++ b/tests/core/Test_lie_generators.cc @@ -406,7 +406,7 @@ int main(int argc, char** argv) { - if (SU2TwoIndexAntiSymm::Dimension != 1){ + if (TwoIndexRep::Dimension != 1){ std::cout << GridLogMessage << "*********************************************" << std::endl;