Skip to content
Open
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
30 changes: 30 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,36 @@
- Fix socle type series for unitary groups
- Add `IsAlmostSimpleGroup` to the properties for which
`AllPrimitiveGroups` and `OnePrimitiveGroup` need not compute the values
- **Breaking:** remove the irreducible solvable matrix groups, i.e. the
functions `IrreducibleSolvableGroup`, `IrreducibleSolvableGroupMS`,
`NumberIrreducibleSolvableGroups` (and its synonym
`NrIrreducibleSolvableGroups`), `AllIrreducibleSolvableGroups`,
`OneIrreducibleSolvableGroup`, the variable
`PrimitiveIndexIrreducibleSolvableGroup`, and the declarations of
`MinimalBlockDimension`, `IsPrimitiveMatrixGroup`,
`IsLinearlyPrimitive` and `DegreeOfMatrixGroup`.
The `irredsol` package covers the same groups over a wider range of
dimensions and fields; use it instead:

| removed | replacement in `irredsol` |
| --- | --- |
| `IrreducibleSolvableGroupMS(n,p,k)` | `IrreducibleSolubleMatrixGroup(n,q,d,k)` |
| `NumberIrreducibleSolvableGroups(n,p)` | `Sum(DivisorsInt(n), d -> Length(IndicesIrreducibleSolubleMatrixGroups(n,p,d)))` |
| `AllIrreducibleSolvableGroups(...)` | `AllIrreducibleSolubleMatrixGroups(...)` |
| `OneIrreducibleSolvableGroup(...)` | `OneIrreducibleSolubleMatrixGroup(...)` |
| `PrimitiveIndexIrreducibleSolvableGroup[d][i]` | `PrimitivePermGroupIrreducibleMatrixGroup(G)` |
| `Characteristic, p` as a condition | `Field, GF(p)` |
| `IsLinearlyPrimitive` | `IsPrimitiveMatrixGroup` |

`Dimension`, `DimensionOfMatrixGroup`, `DegreeOfMatrixGroup`, `Size`,
`Order`, `MinimalBlockDimension` and `IsPrimitiveMatrixGroup` keep
their meaning as conditions, and `irredsol` declares the latter two
itself. But `irredsol` needs the field of the groups to be given, so
`Characteristic` no longer suffices to delimit a search.

Access by index does **not** carry over: `irredsol` numbers the groups
in `GL(n,q)` by trace field and splitting field degree `d`, so a given
`k` denotes a different group there and raises no error.

## 4.0.3 (2026-07-28)

Expand Down
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ PackageDoc := rec(


Dependencies := rec(
GAP := "4.12.0",
GAP := "4.15",
NeededOtherPackages := [],
SuggestedOtherPackages := [],
ExternalConditions := []
Expand Down
17 changes: 0 additions & 17 deletions doc/irredsol.xml

This file was deleted.

1 change: 0 additions & 1 deletion doc/manual.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ Discrete Mathematics), <URL>https://www.codima.ac.uk/</URL>.
<Body>

<#Include SYSTEM "prim.xml">
<#Include SYSTEM "irredsol.xml">

</Body>

Expand Down
1 change: 0 additions & 1 deletion init.g
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#R Read the declaration files.
##
ReadPackage( "primgrp", "lib/primitiv.gd" );
ReadPackage( "primgrp", "lib/irredsol.gd" );

#E init.g . . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here

264 changes: 0 additions & 264 deletions lib/irredsol.gd

This file was deleted.

Loading
Loading