| 1 | # HG changeset patch |
|---|
| 2 | # User Robert Bradshaw <robertwb@math.washington.edu> |
|---|
| 3 | # Date 1196577150 28800 |
|---|
| 4 | # Node ID da7289046a24894af068da8167ccf6769d8fa9f7 |
|---|
| 5 | # Parent 9ff5cebfa0f3ef51a49c47dd9e97a43390cac153 |
|---|
| 6 | Add pxd file for permgroup_element |
|---|
| 7 | |
|---|
| 8 | diff -r 9ff5cebfa0f3 -r da7289046a24 sage/groups/perm_gps/permgroup_element.pxd |
|---|
| 9 | --- /dev/null Thu Jan 01 00:00:00 1970 +0000 |
|---|
| 10 | +++ b/sage/groups/perm_gps/permgroup_element.pxd Sat Dec 01 22:32:30 2007 -0800 |
|---|
| 11 | @@ -0,0 +1,11 @@ |
|---|
| 12 | +from sage.structure.element cimport MultiplicativeGroupElement, MonoidElement, Element |
|---|
| 13 | + |
|---|
| 14 | + |
|---|
| 15 | +cdef class PermutationGroupElement(MultiplicativeGroupElement): |
|---|
| 16 | + cdef int* perm |
|---|
| 17 | + cdef int n |
|---|
| 18 | + cdef __gap |
|---|
| 19 | + cdef Element _gap_element |
|---|
| 20 | + cdef PermutationGroupElement _new_c(self) |
|---|
| 21 | + cpdef list(self) |
|---|
| 22 | + cdef public __custom_name |
|---|