From 5df5d52d417decf8d9a229a674a9d4a082149767 Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Mon, 12 Sep 2016 17:17:20 +0100 Subject: [PATCH] Fix for the Intel compiler --- lib/qcd/QCD.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/qcd/QCD.h b/lib/qcd/QCD.h index ec11c837..0e9d3c17 100644 --- a/lib/qcd/QCD.h +++ b/lib/qcd/QCD.h @@ -55,11 +55,14 @@ namespace QCD { ////////////////////////////////////////////////////////////////////////////// // QCD iMatrix types // Index conventions: Lorentz x Spin x Colour + // note: static const int or constexpr will work for type deductions + // with the intel compiler (up to version 17) ////////////////////////////////////////////////////////////////////////////// - static const int ColourIndex = 2; - static const int SpinIndex = 1; - static const int LorentzIndex= 0; + #define ColourIndex 2 + #define SpinIndex 1 + #define LorentzIndex 0 + // Also should make these a named enum type static const int DaggerNo=0; static const int DaggerYes=1;