From 85b2cb7a8aa3b9eceb4ed85e03881baac1bea3e4 Mon Sep 17 00:00:00 2001 From: Alessandro Lupo Date: Sun, 21 May 2023 14:50:28 +0100 Subject: [PATCH] changing some hardcoded SUn lines --- Grid/qcd/representations/two_index.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Grid/qcd/representations/two_index.h b/Grid/qcd/representations/two_index.h index 9fa6a203..9a06dc6f 100644 --- a/Grid/qcd/representations/two_index.h +++ b/Grid/qcd/representations/two_index.h @@ -80,14 +80,14 @@ public: } private: - void projectOnAlgebra(typename SU::LatticeAlgebraVector &h_out, + void projectOnAlgebra(typename GaugeGroup::LatticeAlgebraVector &h_out, const LatticeMatrix &in, Real scale = 1.0) const { GaugeGroupTwoIndex::projectOnAlgebra(h_out, in, scale); } void FundamentalLieAlgebraMatrix( - typename SU::LatticeAlgebraVector &h, - typename SU::LatticeMatrix &out, Real scale = 1.0) const { + typename GaugeGroup::LatticeAlgebraVector &h, + typename GaugeGroup::LatticeMatrix &out, Real scale = 1.0) const { GaugeGroup::FundamentalLieAlgebraMatrix(h, out, scale); } };