Contents
check_candidate()
Given a simple group code and a bound, determines if the group order divides the given bound.
code (str) – A simple group code.
str
bound (list[int]) – Contains a list with the maximum powers for each prime, example: [2,0,1,0,3] means the order of the group must divide 2^2*5^1*11^3.
list
int
bool
True if the order of the group divides the given bound, otherwise, returns False.