Open
Description
While looking at PR #4274 modifying the group cosets code I started to wonder: For a GroupCoset
in variable x
,
- what is the getter to retrieve
x.G
? I found none - what is the getter to retrieve
x.H
? Searching the code I foundWhile it makes some sense to me (if one considers a right cosetacting_domain(C::GroupCoset) = C.H
Hg
as a G-set, namely the (left!) orbit ofg
underH
) I don't think most people would find it. Can we come up with a better name? (The old one should stay supported to be non-breaking). Perhaps at leastacting_group
? - Turns out for
GroupDoubleCoset
we useleft_acting_group
andright_acting_group
... some consistency in terminology might be helpful. - Regardless of that, the accessors for
x.G
andx.H
as well asrepresentative(x)
should be made to easier to find -- I suggest the docstrings forGroupCoset
as well asright_coset
andleft_coset
should[@ref]
these accessors and perhaps also include a doctest example showing their use? Though arguably it is enough to point at these functions, then their docstrings can contain usage examples. - Similar for double cosets (i.e. mention accessors in docstrings)