group.py Group

GenerateGroup

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

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

Methods are inherited from the Group class.


*1 See Group(initialize) for main type.

Last-modified: 2006-08-08 (Ва) 14:13:44