Constructors¶
This page contains information about the constructors for the
FroidurePin class.
- FroidurePin.__init__(self: FroidurePin, coll: List[Element]) None
Construct from list of generators.
This function constructs a
FroidurePininstance generated by the specified list of generators. There can be duplicate generators and although they do not count as distinct elements, they do count as distinct generators. In other words, the generators are precisely (a copy of)collin the same order they occur incoll.- Parameters
coll (List[Element]) the generators
- Raises
RuntimeError if
collis empty.- Raises
RuntimeError if the items in
colldo not all have the same degree.
- FroidurePin.__init__(self: FroidurePin, that: FroidurePin) None¶
Copy constructor.
Constructs a new
FroidurePinwhich is an exact copy ofthat. No enumeration is triggered for eitherthator of the newly constructedFroidurePin.- Parameters
that (FroidurePin) the
FroidurePinto copy.