1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-19 08:17:05 +01:00

debug tests, fix dimension

This commit is contained in:
Alessandro Lupo
2023-05-22 13:42:21 +01:00
parent af091e0881
commit 5897b93dd4
2 changed files with 30 additions and 30 deletions

View File

@ -36,7 +36,7 @@ struct DimensionHelper;
template <int nc, TwoIndexSymmetry S>
struct DimensionHelper<nc, S, GroupName::SU> {
static const int Dimension = nc * (nc + S) + S;
static const int Dimension = nc * (nc + S) / 2;
};
template <int nc>