From 2d6f4e0c0977561c795d08ef69b7330bd822b2ba Mon Sep 17 00:00:00 2001 From: ferben Date: Fri, 15 Nov 2019 13:46:47 +0000 Subject: [PATCH] fixed issue with HADRONS_ERROR, no idea why this works --- Hadrons/Modules/MDistil/DistilVectors.hpp | 2 ++ Hadrons/NamedTensor.hpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Hadrons/Modules/MDistil/DistilVectors.hpp b/Hadrons/Modules/MDistil/DistilVectors.hpp index 822a27fa..8866b875 100644 --- a/Hadrons/Modules/MDistil/DistilVectors.hpp +++ b/Hadrons/Modules/MDistil/DistilVectors.hpp @@ -116,7 +116,9 @@ void TDistilVectors::setup(void) // We expect the perambulator to have been created with these indices auto &perambulator = envGet(PerambTensor, par().perambulator); if (!perambulator.ValidateIndexNames()) + { HADRONS_ERROR(Range,"Perambulator index names bad"); + } const DistilParameters &dp{envGet(DistilParameters, par().DistilParams)}; const int Nt{env().getDim(Tdir)}; diff --git a/Hadrons/NamedTensor.hpp b/Hadrons/NamedTensor.hpp index a7c11790..998f6c53 100644 --- a/Hadrons/NamedTensor.hpp +++ b/Hadrons/NamedTensor.hpp @@ -78,7 +78,9 @@ public: IndexNames{indexNames.begin(), indexNames.end()}, Name_{Name}, DefaultIndexNames_{indexNames} { if(sizeof...(otherDimensions) + 1 != NumIndices_) + { HADRONS_ERROR(Argument, "NamedTensor: dimensions != tensor rank"); + } } // Do my index names match the default for my type?