FiSGO.OrderSearch.check_candidate

check_candidate(code, bound)[source]

Given a simple group code and a bound, determines if the group order divides the given bound.

Parameters:
  • code (str) – A simple group code.

  • 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.

Return type:

bool

Returns:

True if the order of the group divides the given bound, otherwise, returns False.