-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix delegations among
IrreducibleModules
methods (#5925)
* fix delegations among `IrreducibleModules` methods There were infinite recursions in the case of abelian groups. Apparently there is code for computing the irreducible representations of abelian groups over finite fields only for the case of prime fields. The infinite recursions do not catch the case of non-prime fields anymore after the current changes; the generic code now runs into errors. * hack in order to make more cases work Once we know that our group is abelian, call `IrreducibleModules` without restricting the dimension to 1, and later filter the result in order to take just the 1-dim. modules. (This is not a good solution, but at least more tests are working now.)
- Loading branch information
1 parent
6729b6c
commit 0a4774e
Showing
2 changed files
with
46 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters