Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename and change some *_reps functions #3291

Merged
merged 16 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions docs/src/Groups/subgroups.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,13 @@ intersect(::T, V::T...) where T<:GAPGroup
The following functions return a vector of subgroups.

```@docs
subgroups(G::GAPGroup)
fingolfin marked this conversation as resolved.
Show resolved Hide resolved
normal_subgroups
maximal_subgroups
maximal_normal_subgroups
minimal_normal_subgroups
characteristic_subgroups
derived_series
sylow_system
hall_subgroup_reps
hall_system
complement_class_reps
complement_system
chief_series
composition_series
Expand All @@ -71,6 +67,18 @@ upper_central_series
one can type `embedding(G,H)`.


The following functions return an iterator of subgroups.
Usually it is more efficient to work with (representatives of) the
underlying conjugacy classes of subgroups instead.

```@docs
complements(G::T, N::T) where T <: GAPGroup
hall_subgroups
low_index_subgroups
maximal_subgroups
subgroups(G::GAPGroup)
```

## Conjugation action of elements and subgroups

```@docs
Expand All @@ -94,8 +102,11 @@ number_of_conjugacy_classes(G::GAPGroup)
conjugacy_class(G::GAPGroup, g::GAPGroupElem)
conjugacy_class(G::T, g::T) where T<:GAPGroup
conjugacy_classes(G::GAPGroup)
conjugacy_classes_subgroups(G::GAPGroup)
conjugacy_classes_maximal_subgroups(G::GAPGroup)
complement_classes
hall_subgroup_classes
low_index_subgroup_classes
maximal_subgroup_classes(G::GAPGroup)
subgroup_classes(G::GAPGroup)
```


Expand Down
Loading
Loading