Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

from sage.structure.element cimport MultiplicativeGroupElement, MonoidElement, Element 

from sage.structure.list_clone cimport ClonableIntArray 

  

cdef class PermutationGroupElement(MultiplicativeGroupElement): 

cdef int* perm 

cdef int n 

cdef int perm_buf[15] # to avoid malloc for small elements 

cdef __gap 

cdef Element _gap_element 

cdef __tuple 

cdef PermutationGroupElement _new_c(self) 

cpdef _mul_(self, other) 

cpdef _gap_list(self) 

cpdef domain(self) 

cdef public __custom_name 

cpdef list _act_on_list_on_position(self, list x) 

cpdef ClonableIntArray _act_on_array_on_position(self, ClonableIntArray x)