This is a class for finite group with generators.
Warning:
This initializes a group 'including' the group elements, not a group with generators, now.
We don't recommend using this module now.
Initialize with a list of generators.
>>>GenerateGroup([generator0, generator1,..,generatorN])
You can specify a group(class) in a tuple with the generator list.
>>>GenerateGroup(([generator0, generator1,..,generatorN], group_instance))
You can specify a main type*1 to the second argument.
>>>GenerateGroup([generator0, generator1,..,generatorN], 1)
Example:
>>>Gg=GenerateGroup([integerResidueClass.IntegerResidueClass(2, 20), integerResidueClass.IntegerResidueClass(6, 20)])(See integerResidueClass.py)
Methods are inherited from the Group class.