-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Teach FrattiniSubgroup methods to check for solvability
The generic method and the method using radicals both benefit from checking solvability, and then redispatching (if solvability was not known before, thus preventing an endless loop). The point is that for the former, we are generic anyway, anything may be either trivial to compute or impossible, so we might as well check for solvability, which shouldn't be harder than computing all maximal subgroups (plus, the latter is impossible for huge elementary abelian groups, while the former is trivial). The method using radicals automatically computes whether the group is solvable anyway, so it may just as well use this and redispatch in that case. Resolves #710
- Loading branch information
Showing
3 changed files
with
22 additions
and
2 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
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