1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

improve documentation

This commit is contained in:
Alessandro Lupo 2023-06-01 17:39:10 +01:00
parent ca2fd9fc7b
commit 8db7c23bee
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -2792,7 +2792,7 @@ Supported groups are SU(N) and Sp(2N). The group can be specified through the Gr
class Sp {};
}
A simpler interface is achieved by instantiating the GaugeGroup class with a specific group::
A simpler interface is achieved by aliasing the GaugeGroup class with a specific group::
template <int ncolour>
using SU = GaugeGroup<ncolour, GroupName::SU>;
@ -2800,7 +2800,7 @@ A simpler interface is achieved by instantiating the GaugeGroup class with a spe
template <int ncolour>
using Sp = GaugeGroup<ncolour, GroupName::Sp>;
Specific instantiations are then defined::
Specific aliases are then defined::
typedef SU<2> SU2;
typedef SU<3> SU3;